mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-05 04:57:52 +00:00
6660645ecd
* composer: update dev dependencies * phpstan fixes * phpstan fixes * phpstan fixes * phpstan fixes * drop probably forgotten humbug configs * apply cs * fix cs bug * compsoer: add coding standard and phsptan dev friendly scripts * ecs: add skipped errors * cs: fix PHP 7.1 * fix cs * ecs: exclude strict fixer that break code * ecs: cleanup commented sets * travis: use composer scripts for testing to prevent duplicated setup
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"name": "php-ai/php-ml",
|
|
"type": "library",
|
|
"description": "PHP-ML - Machine Learning library for PHP",
|
|
"license": "MIT",
|
|
"keywords": ["machine learning","pattern recognition","neural network","computational learning theory","artificial intelligence","data science","feature extraction"],
|
|
"homepage": "https://github.com/php-ai/php-ml",
|
|
"authors": [
|
|
{
|
|
"name": "Arkadiusz Kondas",
|
|
"email": "arkadiusz.kondas@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^6.5",
|
|
"symplify/easy-coding-standard": "^3.1",
|
|
"symplify/coding-standard": "^3.1",
|
|
"phpstan/phpstan-shim": "^0.9"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Phpml\\": "src/Phpml"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Phpml\\Tests\\": "tests/Phpml"
|
|
}
|
|
},
|
|
"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"
|
|
}
|
|
}
|