forked from matt-allan/laravel-code-style
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
59 lines (59 loc) · 1.54 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
{
"name": "jubeki/laravel-code-style",
"description": "Combine Custom Fixers with the ruleset of Laravel Pint to fix your code style in Laravel Applications/Packages.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Jubeki/laravel-code-style",
"authors": [
{
"name": "Julius Kiekbusch",
"email": "[email protected]"
},
{
"name": "Matt Allan",
"email": "[email protected]"
}
],
"keywords": [
"laravel",
"pint",
"code-style",
"php-cs-fixer",
"custom-fixers"
],
"autoload": {
"psr-4": {
"Jubeki\\LaravelCodeStyle\\": "src"
}
},
"require": {
"php": "^8.0",
"friendsofphp/php-cs-fixer": "^3.47",
"illuminate/support": "^9.34 || ^10.0 || ^11.0"
},
"require-dev": {
"orchestra/testbench": "^8.0 || ^9.0",
"phpunit/phpunit": "^10.4.1"
},
"extra": {
"laravel": {
"providers": [
"Jubeki\\LaravelCodeStyle\\ServiceProvider"
]
}
},
"scripts": {
"test": [
"rm -rf laravel",
"git clone https://github.com/laravel/laravel.git --single-branch --depth 1",
"phpunit"
],
"check-style": "php-cs-fixer fix --dry-run --diff",
"fix-style": "php-cs-fixer fix"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}