Skip to content

Commit 3e2c76c

Browse files
authored
Merge pull request #5 from peter279k/correct_phpunit
Correct phpunit
2 parents d095524 + ae07ec1 commit 3e2c76c

File tree

4 files changed

+97
-83
lines changed

4 files changed

+97
-83
lines changed

composer.json

+11-4
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,23 @@
1010
],
1111
"keywords": ["bitmap"],
1212
"license": "MIT",
13-
"require": {},
13+
"require": {
14+
"php": ">=5.3"
15+
},
1416
"require-dev": {
15-
"phpunit/phpunit": ">=3.7.38 <6.0"
17+
"phpunit/phpunit": "^4.8 || ^6.5"
1618
},
1719
"autoload": {
1820
"psr-4": {
19-
"Sokil\\": ["src/", "tests/"]
21+
"Sokil\\": "src/"
22+
}
23+
},
24+
"autoload-dev": {
25+
"psr-4": {
26+
"Sokil\\": "tests/"
2027
}
2128
},
2229
"scripts": {
23-
"test": "./vendor/bin/phpunit -c ./tests/phpunit.xml ./tests"
30+
"test": "./vendor/bin/phpunit -c ./tests/phpunit.xml"
2431
}
2532
}

0 commit comments

Comments
 (0)