-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.11 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
{
"name": "code16/pint-config",
"description": "This is my package pint-config",
"keywords": [
"laravel",
"pint-config"
],
"homepage": "https://github.com/code16/pint-config",
"license": "MIT",
"authors": [
{
"name": "code16",
"email": "antoine@code16.fr",
"role": "Developer"
}
],
"require": {
"php": "^8.4",
"laravel/pint": "^1.20",
"illuminate/contracts": "^10.0||^11.0"
},
"require-dev": {
"nunomaduro/collision": "^8.1.1||^7.10.0"
},
"autoload": {
"psr-4": {
"Code16\\PintConfig\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Code16\\PintConfig\\PintConfigServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}