Skip to content

Commit

Permalink
Merge pull request #3 from revinate/php7.4-compat
Browse files Browse the repository at this point in the history
PHP 7.4 compatibility
  • Loading branch information
ccarrillot authored Jun 24, 2020
2 parents e5b4e39 + 99266a1 commit a72b9b9
Show file tree
Hide file tree
Showing 26 changed files with 1,853 additions and 1,239 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@ language: php
install:
composer install
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.1
- 7.4
45 changes: 25 additions & 20 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
{
"name": "revinate/php-getter-setter",
"description": "PHP library to simplify getting and setting values in arrays and objects.",
"autoload": {
"psr-4": {
"Revinate\\GetterSetter\\": "src",
"Revinate\\GetterSetter\\test\\": "test"
},
"files": [ "src/getValueFunctions.php", "src/setValueFunctions.php", "src/util/utils.php" ]
"name": "revinate/php-getter-setter",
"description": "PHP library to simplify getting and setting values in arrays and objects.",
"autoload": {
"psr-4": {
"Revinate\\GetterSetter\\": "src",
"Revinate\\GetterSetter\\test\\": "test"
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"license": "MIT",
"authors": [
{
"name": "Jason Dent",
"email": "jason@revinate.com"
}
"files": [
"src/getValueFunctions.php",
"src/setValueFunctions.php",
"src/util/utils.php"
]
},
"require": {
"php": ">=7",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^6"
},
"license": "MIT",
"authors": [
{
"name": "Jason Dent",
"email": "jason@revinate.com"
}
]
}
Loading

0 comments on commit a72b9b9

Please sign in to comment.