php-ml/composer.json

35 lines
992 B
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.4",
"symplify/easy-coding-standard": "v3.0.0-RC3",
"symplify/coding-standard": "v3.0.0-RC3",
"symplify/package-builder": "v3.0.0-RC3",
"phpstan/phpstan-shim": "^0.8"
},
"autoload": {
"psr-4": {
"Phpml\\": "src/Phpml"
}
},
"autoload-dev": {
"psr-4": {
"Phpml\\Tests\\": "tests/Phpml"
}
}
}