php-ml/composer.json

29 lines
703 B
JSON
Raw Normal View History

2016-02-08 20:54:09 +00:00
{
"name": "php-ai/php-ml",
2016-02-08 22:07:16 +00:00
"type": "library",
2016-05-05 20:15:34 +00:00
"description": "PHP-ML - Machine Learning library for PHP",
2016-02-08 20:54:09 +00:00
"license": "MIT",
2016-08-14 17:14:56 +00:00
"keywords": ["machine learning","pattern recognition","neural network","computational learning theory","artificial intelligence"],
2016-02-08 22:07:16 +00:00
"homepage": "https://github.com/php-ai/php-ml",
2016-02-08 20:54:09 +00:00
"authors": [
{
"name": "Arkadiusz Kondas",
"email": "arkadiusz.kondas@gmail.com"
}
],
"autoload": {
2016-04-08 19:37:26 +00:00
"psr-0": {
"Phpml": "src/"
}
},
2016-02-08 22:07:16 +00:00
"require": {
2016-04-07 21:13:50 +00:00
"php": ">=7.0.0"
2016-02-08 22:07:16 +00:00
},
2016-02-08 20:54:09 +00:00
"require-dev": {
2016-09-21 19:46:16 +00:00
"phpunit/phpunit": "^5.5"
2016-05-05 20:15:34 +00:00
},
"config": {
"bin-dir": "bin"
2016-02-08 20:54:09 +00:00
}
}