forked from igorsgm/laravel-git-hooks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
77 lines (77 loc) · 2.2 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
{
"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": "^10.0|^11.0",
"illuminate/console": "^10.0|^11.0",
"illuminate/container": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/pipeline": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"enlightn/enlightn": "^2.3",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.2",
"mockery/mockery": "^1.5.1",
"nunomaduro/phpinsights": "^2.11",
"orchestra/testbench": "^v8.0.0|^v9.0.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.4",
"rector/rector": "^1.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,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Igorsgm\\GitHooks\\GitHooksServiceProvider"
],
"aliases": {
"GitHooks": "Igorsgm\\GitHooks\\Facades\\GitHooks"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}