-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.33 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": "codin/healthchecks-io",
"description": "healthchecks-io sdk",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Kieron",
"email": "hello@madebykieron.co.uk",
"homepage": "http://madebykieron.co.uk",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"codin/http-client": "^0.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"friends-of-phpspec/phpspec-code-coverage": "@stable",
"phpspec/phpspec": "@stable",
"phpstan/phpstan": "@stable"
},
"autoload": {
"psr-4": {
"Codin\\Healthchecks\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"bin-dir": "bin"
},
"scripts": {
"psr": [
"./bin/php-cs-fixer fix . --allow-risky=yes --rules=@PSR2,no_unused_imports,ordered_imports,ordered_interfaces,single_quote,trailing_comma_in_multiline"
],
"test": [
"phpstan analyse --no-progress --no-ansi --configuration=phpstan.neon",
"phpspec run --no-ansi --no-interaction"
],
"uninstall": [
"rm -rf ./bin",
"rm -rf ./vendor",
"rm ./composer.lock"
]
}
}