-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
019c506
commit 5833b4a
Showing
1 changed file
with
32 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,34 @@ | ||
{ | ||
"name" : "makasim/values", | ||
"type" : "library", | ||
"description" : "An alter ego object. It is an object and an array at the same time", | ||
"keywords" : [ | ||
"model" | ||
], | ||
"license" : "MIT", | ||
"authors" : [{ | ||
"name" : "Maksym Kotliar", | ||
"email" : "kotlyar.maksim@gmail.com" | ||
} | ||
], | ||
"require" : { | ||
"php" : "^7.0" | ||
}, | ||
"require-dev" : { | ||
"phpunit/phpunit" : "^6" | ||
}, | ||
"config" : { | ||
"bin-dir" : "bin" | ||
}, | ||
"autoload" : { | ||
"psr-4" : { | ||
"Makasim\\Values\\" : "src" | ||
}, | ||
"files" : [ | ||
"src/functions_include.php" | ||
] | ||
}, | ||
"autoload-dev" : { | ||
"psr-4" : { | ||
"Makasim\\Values\\Tests\\" : "tests" | ||
} | ||
}, | ||
"extra" : { | ||
"branch-alias" : { | ||
"dev-master" : "0.5-dev" | ||
} | ||
} | ||
"name": "makasim/values", | ||
"type": "library", | ||
"description": "An alter ego object. It is an object and an array at the same time", | ||
"keywords": ["model"], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Maksym Kotliar", | ||
"email": "kotlyar.maksim@gmail.com" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.1" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^6" | ||
}, | ||
"config": { | ||
"bin-dir": "bin" | ||
}, | ||
"autoload": { | ||
"psr-4": { "Makasim\\Values\\": "src" }, | ||
"files": ["src/functions_include.php"] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { "Makasim\\Values\\Tests\\": "tests" } | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "0.5-dev" | ||
} | ||
} | ||
} |