1
0
mirror of https://github.com/danog/class-finder.git synced 2025-01-23 06:11:26 +01:00

Explictly list out PHP requirements.

This commit is contained in:
Hayden Pierce 2018-09-03 16:51:23 -05:00
parent 6bf3fca701
commit 6f4a2013b6

View File

@ -2,14 +2,17 @@
"name": "haydenpierce/class-finder",
"type": "library",
"license": "MIT",
"version": "0.1.0",
"version": "0.1.1",
"authors": [
{
"name": "Hayden Pierce",
"email": "hayden@haydenpierce.com"
}
],
"require": {},
"require": {
"php": "^5.3",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "4.8.36"
},