mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-05 13:07:52 +00:00
a11e3f69c3
* Add support for coveralls.io
* Generate coverage report only on php 7.2 build
* Fix osx travis build and move tools to bin dir
* Update php version badge
* Fix travis conditional statement
* Fix travis conditional statement
* 🤦 fix bin path
31 lines
828 B
JSON
31 lines
828 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"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-0": {
|
|
"Phpml": "src/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^7.1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^6.0",
|
|
"friendsofphp/php-cs-fixer": "^2.4",
|
|
"php-coveralls/php-coveralls": "^1.0"
|
|
},
|
|
"config": {
|
|
"bin-dir": "bin"
|
|
}
|
|
}
|