-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 997 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
39
40
41
42
43
44
{
"name": "streams/api",
"description": "A RESTful API for Laravel Streams.",
"type": "streams-addon",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"authors": [
{
"name": "Ryan Thompson",
"email": "ryan@streams.dev"
}
],
"require": {
"streams/core": "^2.0",
"justinrainbow/json-schema": "^5.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"streams/testing": "^1.0"
},
"autoload": {
"psr-4": {
"Streams\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Streams\\Api\\Tests\\": "tests/"
}
},
"scripts": {},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev",
"dev-develop": "1.1.x-dev"
},
"laravel": {
"providers": [
"Streams\\Api\\ApiServiceProvider"
]
}
}
}