-
- Downloads
Merge pull request #12 from martinssipenko/php7
Only support PHP 7.0 and above
No related branches found
No related tags found
Showing
- .travis.yml 5 additions, 6 deletions.travis.yml
- README.md 25 additions, 23 deletionsREADME.md
- composer.json 12 additions, 4 deletionscomposer.json
- phpunit.xml.dist 3 additions, 3 deletionsphpunit.xml.dist
- src/Data.php 14 additions, 12 deletionssrc/Data.php
- src/DataInterface.php 0 additions, 0 deletionssrc/DataInterface.php
- src/Util.php 0 additions, 0 deletionssrc/Util.php
- tests/DataTest.php 45 additions, 42 deletionstests/DataTest.php
- tests/UtilTest.php 44 additions, 43 deletionstests/UtilTest.php
- tests/bootstrap.php 0 additions, 13 deletionstests/bootstrap.php
... | ... | @@ -23,16 +23,24 @@ |
} | ||
], | ||
"require": { | ||
"php": ">=5.3.2" | ||
"php": "^7.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^6.0" | ||
}, | ||
"autoload": { | ||
"psr-0": { | ||
"Dflydev\\DotAccessData": "src" | ||
"psr-4": { | ||
"Dflydev\\DotAccessData\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Dflydev\\DotAccessData\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.0-dev" | ||
"dev-master": "2.0-dev" | ||
} | ||
} | ||
} |
File moved
File moved
tests/bootstrap.php
deleted
100644 → 0
Please register or sign in to comment