-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.12 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
{
"name": "bwibrew/laravel-gnu-terry-pratchett",
"description": "Keep Sir Terry Pratchett alive forever, in the clacks.",
"keywords": [
"laravel",
"pratchett",
"discworld"
],
"authors": [
{
"name": "Benjamin Wibrew",
"email": "benjamin.wibrew@gmail.com",
"homepage": "http://benjaminwibrew.com"
}
],
"license": "MIT",
"type": "library",
"require": {
"php": ">=5.6",
"illuminate/http": "^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"codacy/coverage": "^1.4.3",
"orchestra/testbench": "^3.0 || ^4.0 || ^5.0",
"phpmd/phpmd": "^2.8.2",
"phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1 || ^8.0 || ^9.0",
"squizlabs/php_codesniffer": "^3.5.5"
},
"autoload": {
"psr-4": {
"BWibrew\\GnuPratchett\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BWibrew\\GnuPratchett\\Tests\\": "tests/"
}
},
"scripts": {
"test" : [
"vendor/bin/phpcs",
"vendor/bin/phpmd . text phpmd.xml",
"vendor/bin/phpunit"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}