php-ml/composer.json

53 lines
1.4 KiB
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",
"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",
"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": {
2022-06-29 14:41:25 +00:00
"php": ">=7.2"
2016-02-08 22:07:16 +00:00
},
2016-02-08 20:54:09 +00:00
"require-dev": {
"phpbench/phpbench": "^0.16.0",
"phpstan/phpstan-phpunit": "^0.12",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^8.0",
"symplify/easy-coding-standard": "^6.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Phpml\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phpml\\Tests\\": "tests/"
}
},
"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
}
}