composer.json
728 Bytes
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
{
"name": "roots/support",
"license": "MIT",
"homepage": "https://github.com/roots/support/",
"authors": [
{
"name": "QWp6t",
"email": "hi@qwp6t.me"
}
],
"support": {
"issues": "https://github.com/roots/support/issues",
"forum": "https://discourse.roots.io/"
},
"autoload": {
"files": [
"helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Roots\\Tests\\": "tests"
}
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^7.2",
"squizlabs/php_codesniffer": "^3.3"
},
"scripts": {
"lint": [
"phpcs --ignore=vendor,tests --extensions=php --standard=PSR12 ."
],
"test": [
"phpunit"
]
}
}