-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Big cleanup, just for fun as it can't work anyway!
- Loading branch information
Showing
14 changed files
with
219 additions
and
2,034 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.idea/ | ||
phpdoc/ | ||
vendor | ||
vendor/ | ||
build/ | ||
composer.phar | ||
composer.lock | ||
.phpcs-cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0"?> | ||
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd"> | ||
|
||
<config name="testVersion" value="7.3-"/> | ||
|
||
<arg name="basepath" value="."/> | ||
<arg name="cache" value=".phpcs-cache"/> | ||
<arg name="colors"/> | ||
<arg name="extensions" value="php"/> | ||
<arg name="parallel" value="10"/> | ||
<!-- Show progress --> | ||
<arg value="p"/> | ||
|
||
<file>UAS</file> | ||
<file>Tests</file> | ||
<file>UASparser_example.phps</file> | ||
|
||
<rule ref="PSR12"/> | ||
<rule ref="PHPCompatibility"/> | ||
<rule ref="Generic.Formatting.SpaceAfterCast"/> | ||
</ruleset> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,16 @@ | ||
language: php | ||
|
||
php: | ||
- 5.5 | ||
- 5.4 | ||
- 5.3 | ||
- 7.3 | ||
- 7.4 | ||
- nightly | ||
|
||
before_script: | ||
- composer self-update | ||
- composer install --dev --prefer-source | ||
- php vendor/autoload.php | ||
install: | ||
- composer install --no-interaction --dev --prefer-source | ||
|
||
script: | ||
- mkdir -p build/logs | ||
- phpunit --configuration travis.phpunit.xml.dist --colors --verbose | ||
|
||
after_script: | ||
- php vendor/bin/coveralls -v | ||
- wget https://scrutinizer-ci.com/ocular.phar | ||
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml | ||
- phpunit --configuration phpunit.xml.dist --colors --verbose | ||
|
||
notifications: | ||
email: false |
Oops, something went wrong.