We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09e3c96 commit 92d9033Copy full SHA for 92d9033
3 files changed
.gitignore
@@ -3,6 +3,8 @@
3
/bin/phing
4
/bin/phpunit
5
/composer.lock
6
+/custom.task.properties
7
+/custom.type.properties
8
/test/coverage.xml
9
/test/report/
-/vendor/
10
+/vendor/
.scrutinizer.yml
@@ -1,8 +1,7 @@
1
build:
2
- tests:
- override:
- -
- command: './bin/phing unit'
- coverage:
- file: 'test/coverage.xml'
- format: 'php-clover'
+ tests:
+ override:
+ - command: './bin/phing unit'
+ coverage:
+ file: 'test/coverage.xml'
+ format: 'php-clover'
composer.json
@@ -8,7 +8,7 @@
"type": "library",
"license": "MIT",
"require": {
11
- "php": ">=7.3.0"
+ "php": ">=7.3"
12
},
13
"require-dev": {
14
"phing/phing": "^2.0",
@@ -25,6 +25,7 @@
25
}
26
27
"config": {
28
- "bin-dir": "bin/"
+ "bin-dir": "bin/",
29
+ "sort-packages": true
30
31
0 commit comments