Skip to content

Commit

Permalink
First Check in.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason-Rev committed Sep 13, 2015
1 parent cac3555 commit e2cf76b
Show file tree
Hide file tree
Showing 20 changed files with 2,165 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/vendor/
25 changes: 25 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "revinate/php-getter-setter",
"description": "PHP library to simplify getting and setting values in arrays and objects.",
"type": "library",
"autoload": {
"psr-4": {
"Revinate\\GetterSetter\\": "src",
"Revinate\\GetterSetter\\test\\": "test"
},
"files": [ "src/getValueFunctions.php", "src/setValueFunctions.php" ]
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"license": "MIT",
"authors": [
{
"name": "Jason Dent",
"email": "[email protected]"
}
]
}
Loading

0 comments on commit e2cf76b

Please sign in to comment.