-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.15 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.15 KB
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
{
"name": "hoangphi/pre-commit",
"description": "Check coding standard & code syntax before commit.",
"type": "library",
"license": "MIT",
"keywords": [
"git pre-commit",
"php coding standard",
"php code syntax",
"php git commit checker"
],
"authors": [
{
"name": "Phi Hoang",
"email": "hoangphi.dev@gmail.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"HoangPhi\\PreCommit\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HoangPhi\\PreCommit\\Tests\\": "tests"
}
},
"require": {
"php": "^7.1.3|^8.0|^8.1|^8.2",
"laravel/framework": "^5.6|^6|^7|^8|^9|^10",
"php-parallel-lint/php-parallel-lint": "^1.0",
"squizlabs/php_codesniffer": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^6.1|^7.0|^8.0|^9.0"
},
"extra": {
"laravel": {
"providers": [
"HoangPhi\\PreCommit\\Providers\\PreCommitServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}