summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json19
1 files changed, 12 insertions, 7 deletions
diff --git a/composer.json b/composer.json
index 553a375..7289208 100644
--- a/composer.json
+++ b/composer.json
@@ -1,27 +1,32 @@
{
"name": "phpoption/phpoption",
"description": "Option Type for PHP",
- "keywords": ["php","option","language","type"],
- "type": "library",
- "license": "Apache2",
+ "keywords": ["php", "option", "language", "type"],
+ "license": "Apache-2.0",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "schmittjoh@gmail.com"
+ },
+ {
+ "name": "Graham Campbell",
+ "email": "graham@alt-three.com"
}
],
"require": {
- "php": ">=5.3.0"
+ "php": "^5.5.9 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "4.7.*"
+ "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
},
"autoload": {
- "psr-0": { "PhpOption\\": "src/" }
+ "psr-4": {
+ "PhpOption\\": "src/PhpOption/"
+ }
},
"extra": {
"branch-alias": {
- "dev-master": "1.3-dev"
+ "dev-master": "1.6-dev"
}
}
}