generated from algoyounes/laravel-package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
99 lines (99 loc) · 2.57 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
{
"name": "algoyounes/bindify",
"description": "Laravel Package Bindify is a package that helps you to bind your classes to the Laravel service container",
"keywords": [
"laravel",
"package",
"service container",
"bindify",
"attribute binding"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Younes ENHARI",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"AlgoYounes\\Bindify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AlgoYounes\\Bindify\\Tests\\": "tests",
"Workbench\\App\\": "workbench/app/"
}
},
"require": {
"php": "^8.2"
},
"suggest": {
"illuminate/support": "for the Laravel integration",
"illuminate/contracts": "for the Laravel integration"
},
"require-dev": {
"laravel/framework": "^11",
"laravel/pint": "^1.13.7",
"pestphp/pest": "^2.28.1",
"phpstan/phpstan": "1.10.56",
"rector/rector": "0.19.5",
"orchestra/testbench": "^9.0"
},
"scripts": {
"refactor": "rector",
"test:refactor": "rector --dry-run",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always",
"test:lint": "pint --test",
"test": [
"@test:refactor",
"@test:lint",
"@test:types",
"@test:unit"
],
"fix:lint": "pint --preset laravel",
"fix:refactor": "rector",
"fix": [
"@fix:refactor",
"@fix:lint"
],
"hook": [
"@hook:pre-commit",
"@hook:pre-push"
],
"hook:install": [
"ln -sf $PWD/hooks/pre-commit .git/hooks/pre-commit",
"chmod +x .git/hooks/pre-commit",
"ln -sf $PWD/hooks/pre-push .git/hooks/pre-push",
"chmod +x .git/hooks/pre-push"
],
"hook:pre-commit": [
"hooks/pre-commit"
],
"hook:pre-push": [
"hooks/pre-push"
],
"post-install-cmd": [
"@hook:install"
]
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"AlgoYounes\\Bindify\\BindifyServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}