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",
|
2017-02-03 11:58:25 +00:00
|
|
|
"keywords": ["machine learning","pattern recognition","neural network","computational learning theory","artificial intelligence","data science","feature extraction"],
|
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"
|
|
|
|
}
|
|
|
|
],
|
2016-02-08 22:07:16 +00:00
|
|
|
"require": {
|
2017-11-14 20:21:23 +00:00
|
|
|
"php": "^7.1"
|
2016-02-08 22:07:16 +00:00
|
|
|
},
|
2016-02-08 20:54:09 +00:00
|
|
|
"require-dev": {
|
2018-01-06 20:25:47 +00:00
|
|
|
"phpunit/phpunit": "^6.5",
|
|
|
|
"symplify/easy-coding-standard": "^3.1",
|
|
|
|
"symplify/coding-standard": "^3.1",
|
|
|
|
"phpstan/phpstan-shim": "^0.9"
|
2018-01-06 12:09:33 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"Phpml\\": "src/Phpml"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Phpml\\Tests\\": "tests/Phpml"
|
|
|
|
}
|
2018-01-06 20:25:47 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"check-cs": "vendor/bin/ecs check src tests bin",
|
|
|
|
"fix-cs": "vendor/bin/ecs check src tests bin --fix",
|
|
|
|
"phpstan": "vendor/bin/phpstan.phar analyse src tests bin --level max --configuration phpstan.neon"
|
2016-02-08 20:54:09 +00:00
|
|
|
}
|
|
|
|
}
|