-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (54 loc) · 1.41 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
{
"name": "hydreflab/laravel-adr",
"type": "library",
"description": "Action-Domain-Responder (ADR) pattern plugin for Laravel",
"keywords": ["adr", "laravel"],
"license": "MIT",
"support": {
"issues": "https://github.com/HydrefLab/laravel-adr/issues",
"source": "https://github.com/HydrefLab/laravel-adr"
},
"authors": [
{
"name": "Michał Golon",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"illuminate/config": "5.5.*|5.6.*",
"illuminate/container": "5.5.*|5.6.*",
"illuminate/console": "5.5.*|5.6.*",
"illuminate/contracts": "5.5.*|5.6.*",
"illuminate/http": "5.5.*|5.6.*",
"illuminate/routing": "5.5.*|5.6.*",
"illuminate/support": "5.5.*|5.6.*",
"illuminate/view": "5.5.*|5.6.*"
},
"require-dev": {
"phpunit/phpunit": "~6.0"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"HydrefLab\\Laravel\\ADR\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HydrefLab\\Laravel\\ADR\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"HydrefLab\\Laravel\\ADR\\ADRServiceProvider"
]
}
}
}