generated from glhd/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·61 lines (61 loc) · 1.3 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
{
"name": "glhd/suspend",
"description": "",
"keywords": [
"laravel"
],
"authors": [
{
"name": "Chris Morrell",
"homepage": "http://www.cmorrell.com"
}
],
"license": "MIT",
"require": {
"illuminate/support": "^8.0",
"ext-json": "*",
"mockery/mockery": "^1.3"
},
"require-dev": {
"orchestra/testbench": ">=6.21.1",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.3.2",
"brainmaestro/composer-git-hooks": "^2.8",
"phpunit/phpunit": "^9.5",
"phpbench/phpbench": "^1.1",
"pestphp/pest": "^1.20",
"mtdowling/transducers": "^0.3.0"
},
"autoload": {
"psr-4": {
"Glhd\\Suspend\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Glhd\\Suspend\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"scripts": {
"post-autoload-dump": [
"[ -d .git ] && vendor/bin/cghooks update || echo 'No git repository to update hooks'"
]
},
"hooks": {
"pre-commit": "[ -f vendor/bin/php-cs-fixer ] && ./bin/pre-commit.sh"
},
"extra": {
"laravel": {
"providers": [
"Glhd\\Suspend\\Support\\PackageServiceProvider"
],
"aliases": {
"Gretel": "Glhd\\Suspend\\Support\\Facades\\Package"
}
}
}
}