Skip to content

Commit bd3d3db

Browse files
committed
bump to 7.1
1 parent 0b589f9 commit bd3d3db

File tree

3 files changed

+1515
-5
lines changed

3 files changed

+1515
-5
lines changed

.gitignore

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
1+
# IDE Shizzle; it is recommended to use a global .gitignore for this but since this is an OSS project we want to make
2+
# it easy to contribute
13
.idea
2-
composer.lock
3-
vendor
4-
.DS_Store
4+
/nbproject/private/
5+
.buildpath
6+
.project
7+
.settings
8+
9+
# No need to version the binary files of other tools
10+
bin/behat*
11+
bin/phpcs*
12+
bin/phpunit*
13+
bin/jsonlint*
14+
bin/validate-json*
15+
16+
# Build folder and vendor folder are generated code; no need to version this
17+
build/*
18+
vendor/*
19+
composer.phar
20+
21+
# By default the phpunit.xml.dist is provided; you can override this using a local config file
22+
phpunit.xml

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
}
1010
],
1111
"require": {
12-
"php": "^7.0",
12+
"php": ">=7.1",
1313
"phpdocumentor/reflection-common": "^1.0"
1414
},
1515
"require-dev": {
16-
"phpunit/phpunit": "^6.4",
16+
"phpunit/phpunit": "^6.5",
1717
"mockery/mockery": "^1.0"
1818
},
1919
"autoload": {

0 commit comments

Comments
 (0)