php-ml/composer.json

30 lines
784 B
JSON
Raw Normal View History

2016-02-08 21:54:09 +01:00
{
"name": "php-ai/php-ml",
2016-02-08 23:07:16 +01:00
"type": "library",
2016-05-05 22:15:34 +02:00
"description": "PHP-ML - Machine Learning library for PHP",
2016-02-08 21:54:09 +01:00
"license": "MIT",
2017-02-03 12:58:25 +01:00
"keywords": ["machine learning","pattern recognition","neural network","computational learning theory","artificial intelligence","data science","feature extraction"],
2016-02-08 23:07:16 +01:00
"homepage": "https://github.com/php-ai/php-ml",
2016-02-08 21:54:09 +01:00
"authors": [
{
"name": "Arkadiusz Kondas",
"email": "arkadiusz.kondas@gmail.com"
}
],
"autoload": {
2016-04-08 21:37:26 +02:00
"psr-0": {
"Phpml": "src/"
}
},
2016-02-08 23:07:16 +01:00
"require": {
2016-04-07 23:13:50 +02:00
"php": ">=7.0.0"
2016-02-08 23:07:16 +01:00
},
2016-02-08 21:54:09 +01:00
"require-dev": {
"phpunit/phpunit": "^6.0",
"friendsofphp/php-cs-fixer": "^2.4"
2016-05-05 22:15:34 +02:00
},
"config": {
"bin-dir": "bin"
2016-02-08 21:54:09 +01:00
}
}