-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.49 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
57
58
59
60
61
62
63
64
{
"name": "pavlusha/unit-php-sdk",
"version": "0.8.0",
"type": "sdk",
"description": "This project allows developers to interact with the Nginx Unit web server through PHP classes",
"license": "Apache-2.0",
"homepage": "https://github.com/Pavlusha311245/nginx-unit-php-sdk",
"keywords": [
"unit",
"nginx unit",
"sdk"
],
"authors": [
{
"name": "Pavel Zavadski",
"email": "[email protected]",
"homepage": "https://pavlusha.me/"
}
],
"scripts": {
"test": [
"composer test:unit",
"composer test:phpstan"
],
"test:unit": "./vendor/bin/pest",
"test:coverage": "./vendor/bin/pest --coverage --coverage-clover coverage.xml",
"test:phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon",
"lint": "./vendor/bin/php-cs-fixer fix --rules=@PSR12 ."
},
"require": {
"php": "^8.3",
"friendsofphp/php-cs-fixer": "^3.54",
"guzzlehttp/guzzle": "^7.8.1",
"nesbot/carbon": "^2.72",
"doctrine/inflector": "^2.0",
"ext-curl": "*"
},
"require-dev": {
"pestphp/pest": "^2.34",
"phpstan/phpstan": "^1.10",
"mockery/mockery": "^1.6",
"fakerphp/faker": "^1.23"
},
"autoload": {
"psr-4": {
"UnitPhpSdk\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}