-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 924 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
{
"name": "timacdonald/multiformat-response-objects",
"description": "A response object that handles multiple response formats within the one controller",
"license": "MIT",
"keywords": [
"multiformat",
"responsable",
"response objects",
"laravel"
],
"authors": [
{
"name": "Tim MacDonald",
"email": "[email protected]",
"homepage": "https://timacdonald.me"
}
],
"require": {
"php": "^7.2",
"illuminate/support": "5.8.*",
"illuminate/http": "5.8.*",
"symfony/mime": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "^3.5"
},
"autoload": {
"psr-4": {
"TiMacDonald\\MultiFormat\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}