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",
|
2018-01-31 19:06:51 +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",
|
2018-01-31 19:06:51 +00:00
|
|
|
"license": "MIT",
|
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": {
|
2019-04-10 18:42:59 +00:00
|
|
|
"php": "^7.2"
|
2016-02-08 22:07:16 +00:00
|
|
|
},
|
2016-02-08 20:54:09 +00:00
|
|
|
"require-dev": {
|
2018-03-10 20:48:16 +00:00
|
|
|
"phpbench/phpbench": "^0.14.0",
|
2019-03-25 13:55:14 +00:00
|
|
|
"phpstan/phpstan-phpunit": "^0.11",
|
|
|
|
"phpstan/phpstan-shim": "^0.11",
|
|
|
|
"phpstan/phpstan-strict-rules": "^0.11",
|
2019-04-10 18:42:59 +00:00
|
|
|
"phpunit/phpunit": "^8.0",
|
2018-10-16 19:42:06 +00:00
|
|
|
"symplify/coding-standard": "^5.1",
|
|
|
|
"symplify/easy-coding-standard": "^5.1"
|
2018-01-31 18:25:22 +00:00
|
|
|
},
|
|
|
|
"config": {
|
2018-01-31 20:50:26 +00:00
|
|
|
"preferred-install": "dist",
|
2018-01-31 18:25:22 +00:00
|
|
|
"sort-packages": true
|
2018-01-06 12:09:33 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2018-02-10 11:08:58 +00:00
|
|
|
"Phpml\\": "src/"
|
2018-01-06 12:09:33 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2018-02-10 11:08:58 +00:00
|
|
|
"Phpml\\Tests\\": "tests/"
|
2018-01-06 12:09:33 +00:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|