Skip to content

Commit c955014

Browse files
authored
Merge pull request #183 from challgren/revent-phpstan
Revert phpstan changes to the IPP Classes
2 parents cd3eadc + 651d602 commit c955014

File tree

312 files changed

+21482
-23347
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

312 files changed

+21482
-23347
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
/vendor/
22
composer.phar
3+
/nbproject
4+
.DS_Store

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
language: php
22
php:
3+
- 5.6
34
- 7.1
45
- 7.2
56
before_install:
67
- composer self-update
78
before_script:
89
- composer install
910
script:
10-
- composer require --dev "phpstan/phpstan:^0.10" && composer require --dev "guzzlehttp/guzzle" && vendor/bin/phpstan analyse -c phpstan.neon --level=0 --memory-limit=1G src
11-
- phpunit --configuration phpunit.xml
11+
- phpunit --configuration phpunit.xml

composer.json

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,13 @@
55
"keywords": ["api", "http", "rest", "quickbooks", "smallbusiness"],
66
"homepage": "http://developer.intuit.com",
77
"require": {
8-
"php": ">=5.6.0"
8+
"php": ">=5.6.0",
9+
"ext-mbstring": "*",
10+
"ext-dom": "*"
911
},
1012
"require-dev": {
1113
"phpunit/phpunit": "^5.7"
1214
},
13-
"suggest": {
14-
"ext-curl": "Uses Curl to make HTTP Requests",
15-
"guzzlehttp/guzzle": "Uses Guzzle to make HTTP Requests"
16-
},
1715
"autoload": {
1816
"psr-4": {
1917
"QuickBooksOnline\\API\\": "src/"
@@ -26,8 +24,8 @@
2624
"email": "[email protected]"
2725
}
2826
],
29-
"scripts": {
30-
"phpstan": "vendor/bin/phpstan --memory-limit=1G --level=0 analyse src",
31-
"test": "phpunit --configuration phpunit.xml"
27+
"suggest": {
28+
"ext-curl": "Uses Curl to make HTTP Requests",
29+
"guzzlehttp/guzzle": "Uses Guzzle to make HTTP Requests"
3230
}
3331
}

0 commit comments

Comments
 (0)