-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
48 lines (48 loc) · 1.17 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
{
"name": "icanhazstring/systemctl-php",
"description": "PHP wrapper for systemctl",
"type": "library",
"require": {
"php": "^7.3|^8.0",
"symfony/process": "^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.9",
"squizlabs/php_codesniffer": "^3.7.2",
"slevomat/coding-standard": "^6.4.1",
"phpstan/phpstan": "^1.10.21",
"phpspec/prophecy-phpunit": "^2.0.2"
},
"autoload": {
"psr-4": {
"icanhazstring\\SystemCtl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"icanhazstring\\SystemCtl\\Test\\": "test/"
}
},
"license": "MIT",
"authors": [
{
"name": "icanhazstring",
"email": "blubb0r05+github@gmail.com"
}
],
"extra": {
"branch-alias": {
"dev-master": "0.8.x-dev"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --no-progress",
"test": "vendor/bin/phpunit",
"cs": "vendor/bin/phpcs"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}