We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 452ef72 commit a59e75eCopy full SHA for a59e75e
.travis.yml
@@ -24,7 +24,7 @@ matrix:
24
- php: 7.1
25
name: phpstan
26
script:
27
- - vendor/bin/phpstan analyze
+ - vendor/bin/phpstan analyse
28
29
before_install:
30
- if ! [ -z "$DEPENDENCIES" ]; then composer require --no-update ${DEPENDENCIES}; fi;
composer.json
@@ -31,7 +31,8 @@
31
"php-http/guzzle6-adapter": "^1.0 || ^2.0",
32
"php-http/mock-client": "^1.2",
33
"guzzlehttp/psr7": "^1.2",
34
- "cache/array-adapter": "^0.4"
+ "cache/array-adapter": "^0.4",
35
+ "phpstan/phpstan": "^0.12.23"
36
},
37
"autoload": {
38
"psr-4": { "Github\\": "lib/Github/" }
phpstan.neon.dist
@@ -0,0 +1,4 @@
1
+parameters:
2
+ level: 0
3
+ paths:
4
+ - lib
0 commit comments