-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.35 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "sandwave-io/freenas",
"description": "A PHP SDK for the FreeNAS RESTful API (v2)",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jesse Kramer",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.5.0",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14.4",
"phpstan/phpstan": "^1.10.6",
"phpunit/phpunit": "^10.0.15",
"sandwave-io/php-cs-fixer-config": "^1.0.0"
},
"autoload": {
"psr-4": {
"SandwaveIo\\FreeNAS\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"SandwaveIo\\FreeNAS\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"@test:types",
"@lint",
"@test:unit"
],
"test:unit": [
"vendor/bin/phpunit --coverage-text"
],
"test:types": [
"vendor/bin/phpstan analyze"
],
"lint": [
"vendor/bin/php-cs-fixer fix --dry-run --diff --show-progress=none -vvv"
],
"lint:fix": [
"vendor/bin/php-cs-fixer fix"
]
}
}