Skip to content

Commit f9ba2d4

Browse files
committed
Streamlined QA tools
- Removed coveralls support (not using, due to lack of availability of service) - Removed unused development dependencies - Removed bin/check-cs.sh (not needed, as php-cs-fixer allows passing the config file now) - Removed psr0 from fixers (since we're following psr4)
1 parent 9ab7777 commit f9ba2d4

File tree

4 files changed

+2
-32
lines changed

4 files changed

+2
-32
lines changed

.php_cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ return Symfony\CS\Config\Config::create()
2929
'indentation',
3030
'linefeed',
3131
'php_closing_tag',
32-
'psr0',
3332
'short_tag',
3433
'trailing_spaces',
3534
'unused_use',

.travis.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,9 @@ before_script:
1010
- composer install --dev --prefer-source
1111

1212
script:
13-
- ./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml
14-
- ./bin/check-cs.sh
13+
- ./vendor/bin/phpunit
14+
- ./vendor/bin/php-cs-fixer -v fix . --dry-run --config-file ./.php_cs
1515

16-
after_script:
17-
- php ./vendor/bin/coveralls -v
18-
1916
notifications:
2017
irc: "irc.freenode.org#apigility-dev"
2118
email: false

bin/check-cs.sh

Lines changed: 0 additions & 24 deletions
This file was deleted.

composer.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@
3636
"require-dev": {
3737
"fabpot/php-cs-fixer": "*@dev",
3838
"phpunit/PHPUnit": "3.7.*",
39-
"satooshi/php-coveralls": ">=0.6.0",
40-
"zendframework/zend-console": "~2.3",
4139
"zendframework/zend-loader": "~2.3"
4240
},
4341
"autoload": {

0 commit comments

Comments
 (0)