forked from tighten/tlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 965 Bytes
/
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
{
"name": "tightenco/tlint",
"description": "Tighten linter for Laravel conventions",
"homepage": "https://github.com/tighten/tlint",
"license": "MIT",
"authors": [
{
"name": "Logan Henson",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.3",
"nikic/php-parser": "^4.5",
"symfony/console": "^4.3 || ^5.0",
"symfony/process": "^4.3 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3"
},
"config": {
"platform": {
"php": "7.3.0"
}
},
"autoload": {
"psr-4": {
"Tighten\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"bin": [
"bin/tlint"
],
"scripts": {
"buildTestEnvironments": "./scripts/buildTestEnvironments.sh",
"runTests": "./scripts/runTests.sh"
}
}