-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·58 lines (58 loc) · 1.21 KB
/
composer.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.21 KB
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
{
"name": "glhd/hooks",
"description": "",
"keywords": [
"laravel"
],
"authors": [
{
"name": "Chris Morrell",
"homepage": "http://www.cmorrell.com"
}
],
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.1",
"illuminate/support": "^10|^11|^12|^13|14.x-dev|dev-master|dev-main",
"spatie/laravel-package-tools": "^1.15"
},
"require-dev": {
"orchestra/testbench": "^8.33|^9.17|^10.11|^11.0|12.x-dev",
"friendsofphp/php-cs-fixer": "^3.94",
"phpunit/phpunit": "^10.5|^11.5|^12.5|^13.0",
"projektgopher/whisky": "^0.5.1"
},
"autoload": {
"psr-4": {
"Glhd\\Hooks\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Glhd\\Hooks\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"whisky update"
],
"post-update-cmd": [
"whisky update"
],
"fix-style": "vendor/bin/php-cs-fixer fix",
"check-style": "vendor/bin/php-cs-fixer fix --diff --dry-run"
},
"extra": {
"laravel": {
"providers": [
"Glhd\\Hooks\\Support\\HooksServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}