-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
39 lines (39 loc) · 974 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "cturbelin/rserve-php",
"type": "library",
"description": "Rserve client library for PHP",
"keywords": ["R","Rserve","Stats"],
"homepage": "https://github.com/cturbelin/rserve-php",
"licence": "LGPL-2.1",
"authors": [
{
"name": "Clément Turbelin",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9",
"symplify/easy-coding-standard": "^12.0"
},
"autoload": {
"files": ["src/lib/helpers.php"],
"psr-4": {
"Sentiweb\\Rserve\\": "src/",
"Sentiweb\\Rserve\\Tests\\":"tests/"
}
},
"autoload-dev": {
"psr-4" : {
"Sentiweb\\Rserve\\Tests\\":"tests/"
}
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude doc",
"phpunit --verbose"
]
}
}