-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathcomposer.json
106 lines (106 loc) · 3.39 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "ans-group/laravel-health-check",
"description": "A package for checking the health of your Laravel/Lumen applications.",
"keywords": [
"ukfast",
"laravel-health-check",
"lumen-health-check",
"ukfast-health-check",
"laravel",
"lumen"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "George Kelly",
"email": "george.kelly@ukfast.co.uk",
"role": "Author & Maintainer"
},
{
"name": "Tyler Woonton",
"email": "tyler.woonton@ukfast.co.uk",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/ukfast/laravel-health-check/issues",
"source": "https://github.com/ukfast/laravel-health-check/tree/master"
},
"autoload": {
"psr-4": {
"UKFast\\HealthCheck\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"UKFast\\HealthCheck\\HealthCheckServiceProvider"
],
"aliases": {
"HealthCheck": "UKFast\\HealthCheck\\Facade\\HealthCheck"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-json": "*",
"illuminate/console": "^10.0|^11.0",
"illuminate/http": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.5",
"illuminate/database": "^10.0|^11.0",
"illuminate/log": "^10.0|^11.0",
"illuminate/redis": "^10.0|^11.0",
"larastan/larastan": "^2.9",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^8.0|^9.0",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.4",
"phpunit/phpunit": "^10.0|^11.0",
"rector/rector": "^1.2",
"squizlabs/php_codesniffer": "^3.10"
},
"suggest": {
"illuminate/database": "Allows the database health check to function.",
"illuminate/log": "Allows the log health check to function.",
"illuminate/redis": "Allows the redis health check to function.",
"league/flysystem": "Allows the ftp health check to function.",
"league/flysystem-ftp": "Allows the ftp health check to function.",
"guzzlehttp/guzzle": "Allows the http health check to function.",
"enlightn/security-checker": "Allows the package security health check to function."
},
"scripts": {
"standards:check": [
"@phpcs",
"@phpmd",
"@rector"
],
"standards:fix": [
"@phpcs:fix",
"@rector:fix"
],
"test": "phpunit",
"phpcs": "./vendor/bin/phpcs --standard=PSR12 --ignore=vendor .",
"phpcs:fix": "./vendor/bin/phpcbf --standard=PSR12 --ignore=vendor .",
"phpmd": "./vendor/bin/phpmd . github .phpmd/ruleset.xml --color",
"rector": "./vendor/bin/rector process --dry-run",
"rector:fix": "./vendor/bin/rector process",
"larastan": "./vendor/bin/phpstan analyse --error-format=table --memory-limit=1G"
}
}