1{
2    "name": "bdelespierre/php-kmeans",
3    "type": "library",
4    "description": "K-Means algorithm for PHP",
5    "keywords": [
6        "php",
7        "kmeans",
8        "clustering"
9    ],
10    "license": "MIT",
11    "authors": [
12        {
13            "name": "Benjamin Delespierre",
14            "email": "benjamin.delespierre@gmail.com",
15            "role": "Developer"
16        }
17    ],
18    "require": {
19        "php": "^7.3|^8.0"
20    },
21    "require-dev": {
22        "phpunit/phpunit": "^9.3"
23    },
24    "autoload": {
25        "psr-0": {
26            "KMeans": "src/"
27        }
28    },
29    "autoload-dev": {
30        "psr-4": {
31            "Tests\\": "tests/"
32        }
33    },
34    "scripts": {
35        "test": "vendor/bin/phpunit",
36        "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
37    }
38}
39