diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/composer.json b/composer.json index 586ad96..dc35c2f 100644 --- a/composer.json +++ b/composer.json @@ -4,14 +4,23 @@ "minimum-stability": "stable", "keywords": ["math","parser","expression","calculator"], "homepage": "http://github.com/NeonXP/MathExecutor", - "license": "GPLv2", + "license": "MIT", "authors": [ { "name": "Alexander 'NeonXP' Kiryukhin", "email": "frei@neonxp.info" } ], + "require": { + "php": ">=5.6" + }, + "require-dev": { + "phpunit/phpunit": "~5.0" + }, "autoload": { "psr-0": {"NXP": "src/"} + }, + "config": { + "bin-dir": "bin" } } |