File tree Expand file tree Collapse file tree 4 files changed +59
-9
lines changed
Expand file tree Collapse file tree 4 files changed +59
-9
lines changed Original file line number Diff line number Diff line change 11version : 2
22jobs :
3- build :
3+ build_php7.0 :
44 docker :
55 - image : circleci/php:7.0-apache-stretch-browsers
66 steps :
77 - checkout
8- - run : composer install
9- - run : composer test
8+ - run : COMPOSER=composer-php7.json composer install
9+ - run : COMPOSER=composer-php7.json composer test
10+ build_php8.0 :
11+ docker :
12+ - image : circleci/php:8.0
13+ steps :
14+ - checkout
15+ - run : COMPOSER=composer.json composer install
16+ - run : COMPOSER=composer.json composer test
17+ build_php7.4 :
18+ docker :
19+ - image : circleci/php:7.4.6
20+ steps :
21+ - checkout
22+ - run : COMPOSER=composer.json composer install
23+ - run : COMPOSER=composer.json composer test
24+ workflows :
25+ version : 2
26+ build_php_versions :
27+ jobs :
28+ - build_php7.0
29+ - build_php7.4
30+ - build_php8.0
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " sirbrillig/phpcs-import-detection" ,
3+ "description" : " A set of phpcs sniffs to look for unused or unimported symbols." ,
4+ "type" : " phpcodesniffer-standard" ,
5+ "license" : " MIT" ,
6+ "authors" : [
7+ {
8+ "name" : " Payton Swick" ,
9+ 10+ }
11+ ],
12+ "autoload" : {
13+ "psr-4" : {
14+ "ImportDetection\\ " : " ImportDetection/"
15+ }
16+ },
17+ "minimum-stability" : " dev" ,
18+ "prefer-stable" : true ,
19+ "scripts" : {
20+ "test" : " ./vendor/bin/phpunit"
21+ },
22+ "require" : {
23+ "php" : " ^7.0" ,
24+ "squizlabs/php_codesniffer" : " ^3.5.8"
25+ },
26+ "require-dev" : {
27+ "sirbrillig/phpcs-variable-analysis" : " ^2.0.1" ,
28+ "dealerdirect/phpcodesniffer-composer-installer" : " ^0.7.1" ,
29+ "phpunit/phpunit" : " ^6.4"
30+ }
31+ }
Original file line number Diff line number Diff line change 2020 "test" : " ./vendor/bin/phpunit"
2121 },
2222 "require" : {
23- "php" : " ^7.0" ,
24- "squizlabs/php_codesniffer" : " ^3.3.0 "
23+ "php" : " ^7.0 || ^8 .0" ,
24+ "squizlabs/php_codesniffer" : " ^3.5.8 "
2525 },
2626 "require-dev" : {
2727 "sirbrillig/phpcs-variable-analysis" : " ^2.0.1" ,
28- "dealerdirect/phpcodesniffer-composer-installer" : " ^0.6" ,
29- "phpunit/phpunit" : " ^6.4" ,
30- "limedeck/phpunit-detailed-printer" : " ^3.1"
28+ "dealerdirect/phpcodesniffer-composer-installer" : " ^0.7.1" ,
29+ "phpunit/phpunit" : " ^9.0"
3130 }
3231}
Original file line number Diff line number Diff line change 11<phpunit
22 bootstrap=" tests/bootstrap.php"
3- printerClass=" LimeDeck\Testing\Printer"
43 >
54 <testsuites >
65 <testsuite >
You can’t perform that action at this time.
0 commit comments