This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
58 lines (58 loc) · 1.45 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
{
"name": "matt-allan/laravel-code-style",
"description": "Code formatting for Laravel projects",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/matt-allan/laravel-code-style",
"authors": [
{
"name": "Matt Allan",
"email": "[email protected]"
}
],
"keywords": [
"laravel",
"code-style",
"php-cs-fixer",
"psr-2"
],
"autoload": {
"psr-4": {
"MattAllan\\LaravelCodeStyle\\": "src"
}
},
"require": {
"php": ">=7.4",
"friendsofphp/php-cs-fixer": "^3.2.0",
"illuminate/support": "^7.0|^8.0"
},
"require-dev": {
"brick/varexporter": "^0.3.2",
"laravel/framework": "^7.0|^8.0",
"orchestra/testbench": "^5.0|^6.0",
"phpunit/phpunit": "^7.0|^8.0",
"styleci/sdk": "^1.3"
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
},
"laravel": {
"providers": [
"MattAllan\\LaravelCodeStyle\\ServiceProvider"
]
}
},
"scripts": {
"test": "phpunit",
"check-style": "php-cs-fixer fix --dry-run --diff",
"fix-style": "php-cs-fixer fix",
"gen-rules": "./bin/gen-rules"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"abandoned": "jubeki/laravel-code-style"
}