Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
1ma committed Sep 24, 2023
1 parent 9049235 commit 3afac47
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 19 deletions.
12 changes: 5 additions & 7 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
/benchmarks export-ignore
/doc export-ignore
/tests export-ignore
/.gitattributes export-ignore
/.github export-ignore
/.gitignore export-ignore
/.php-cs-fixer.php export-ignore
/.scrutinizer.yml export-ignore
/.travis.yml export-ignore
/CHANGELOG.md export-ignore
/phpbench.json.dist export-ignore
/benchmarks export-ignore
/doc export-ignore
/phpbench.json export-ignore
/phpunit.xml export-ignore
/README.md export-ignore
/tests export-ignore
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017-2021 Marcel Hernandez
Copyright (c) 2017-2023 Marcel Hernandez

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# uuid

![.github/workflows/phpunit.yml](https://github.com/1ma/uuid/workflows/.github/workflows/phpunit.yml/badge.svg) [![Code Coverage](https://scrutinizer-ci.com/g/1ma/uuid/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/1ma/uuid/?branch=master) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/1ma/uuid/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/1ma/uuid/?branch=master)
[![CI](https://github.com/1ma/uuid/actions/workflows/ci.yml/badge.svg)](https://github.com/1ma/uuid/actions/workflows/ci.yml)
[![Code Coverage](https://scrutinizer-ci.com/g/1ma/uuid/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/1ma/uuid/?branch=master)

A SOLID and lightweight implementation of the UUID spec for PHP +7.3
A SOLID and lightweight implementation of the UUID spec for PHP +8.2

![project overview](doc/class-diagram.png)

Expand Down
15 changes: 6 additions & 9 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,33 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
backupGlobals="true"
beStrictAboutOutputDuringTests="true"
bootstrap="vendor/autoload.php"
cacheResult="false"
colors="true"
executionOrder="depends,defects"
failOnRisky="true"
failOnWarning="true"
testdox="true"
>
<testsuites>
<testsuite name="uma/uuid test suite">
<directory>tests</directory>
</testsuite>
</testsuites>

<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>src</directory>
</include>
</source>

<coverage>
<report>
<clover outputFile="build/coverage.xml"/>
<html outputDirectory="build/coverage"/>
<text outputFile="php://stdout" showOnlySummary="true"/>
</report>
</coverage>

<source>
<include>
<directory>src</directory>
</include>
</source>
</phpunit>

0 comments on commit 3afac47

Please sign in to comment.