-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
61 lines (61 loc) · 1.58 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
{
"name": "tightenco/tlint",
"description": "Tighten linter for Laravel conventions",
"homepage": "https://github.com/tighten/tlint",
"license": "MIT",
"authors": [
{
"name": "Logan Henson",
"email": "logan@loganhenson.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"illuminate/view": "*",
"nikic/php-parser": "^5.0",
"symfony/console": "^6.1||^7.0",
"symfony/process": "^6.1||^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"spatie/ray": "^1.37",
"symfony/var-dumper": "^6.1",
"tightenco/duster": "^3.0"
},
"autoload": {
"psr-4": {
"Tighten\\TLint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"exclude-from-classmap": ["tests/fixtures"]
},
"bin": [
"bin/tlint"
],
"scripts": {
"update-fixture-app": [
"rm -rf ./tests/fixtures/laravel",
"composer create-project laravel/laravel ./tests/fixtures/laravel",
"echo '{\"preset\":\"laravel\"}' > ./tests/fixtures/laravel/tlint.json",
"rm -rf ./tests/fixtures/laravel/composer.lock"
],
"lint": [
"vendor/bin/duster lint"
],
"fix": [
"vendor/bin/duster fix"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}