File tree Expand file tree Collapse file tree 3 files changed +1515
-5
lines changed Expand file tree Collapse file tree 3 files changed +1515
-5
lines changed Original file line number Diff line number Diff line change
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
1
3
.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
Original file line number Diff line number Diff line change 9
9
}
10
10
],
11
11
"require" : {
12
- "php" : " ^7.0 " ,
12
+ "php" : " >=7.1 " ,
13
13
"phpdocumentor/reflection-common" : " ^1.0"
14
14
},
15
15
"require-dev" : {
16
- "phpunit/phpunit" : " ^6.4 " ,
16
+ "phpunit/phpunit" : " ^6.5 " ,
17
17
"mockery/mockery" : " ^1.0"
18
18
},
19
19
"autoload" : {
You can’t perform that action at this time.
0 commit comments