-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
73 lines (73 loc) · 2.05 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
{
"name": "igorsgm/laravel-git-hooks",
"description": "🪝• Efficiently manage Git hooks in Laravel projects. Enhance code quality, save time on reviews, and prevent bugs from entering your repository.",
"keywords": [
"igorsgm",
"laravel-git-hooks",
"git",
"git-hooks",
"pint-pre-commit",
"pre-commit",
"pre-commit-hook",
"pint-pre-commit"
],
"homepage": "https://github.com/igorsgm/laravel-git-hooks",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Igor Moraes",
"email": "igor.sgm@gmail.com"
}
],
"require": {
"php": "^8.1",
"illuminate/config": "^9.0|^10.0|^11.0",
"illuminate/console": "^9.0|^10.0|^11.0",
"illuminate/container": "^9.0|^10.0|^11.0",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"illuminate/pipeline": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"enlightn/enlightn": "^2.3",
"laravel/pint": "^1.2",
"mockery/mockery": "^1.5.1",
"larastan/larastan": "^2.9",
"orchestra/testbench": "^v8.0.0|^v9.0.0",
"pestphp/pest": "^2.0",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Igorsgm\\GitHooks\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Igorsgm\\GitHooks\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Igorsgm\\GitHooks\\GitHooksServiceProvider"
],
"aliases": {
"GitHooks": "Igorsgm\\GitHooks\\Facades\\GitHooks"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}