mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-14 01:14:06 +00:00
46fa2c2cca
* update ECS config to v4 * composer: require Symplify 4 * apply coding-standard: use constants over functions, protected setUp() in tests, array indentation * ecs: add false positive case * composer: update lock * bump to ECS 4.4 * update composer.lock * shorten ECS config name * ecs: ignore assignments in while() * fix cs
54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
{
|
|
"name": "php-ai/php-ml",
|
|
"type": "library",
|
|
"description": "PHP-ML - Machine Learning library for PHP",
|
|
"keywords": [
|
|
"machine learning",
|
|
"pattern recognition",
|
|
"neural network",
|
|
"computational learning theory",
|
|
"artificial intelligence",
|
|
"data science",
|
|
"feature extraction"
|
|
],
|
|
"homepage": "https://github.com/php-ai/php-ml",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Arkadiusz Kondas",
|
|
"email": "arkadiusz.kondas@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.1"
|
|
},
|
|
"require-dev": {
|
|
"phpbench/phpbench": "^0.14.0",
|
|
"phpstan/phpstan-phpunit": "^0.9.4",
|
|
"phpstan/phpstan-shim": "^0.9",
|
|
"phpstan/phpstan-strict-rules": "^0.9.0",
|
|
"phpunit/phpunit": "^7.0.0",
|
|
"symplify/coding-standard": "^4.4",
|
|
"symplify/easy-coding-standard": "^4.4"
|
|
},
|
|
"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"
|
|
}
|
|
}
|