-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.18 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
56
57
{
"name": "glhd/medusa",
"description": "Headless CMS for Laravel",
"keywords": [
"laravel",
"cms",
"headless",
"medusa"
],
"authors": [
{
"name": "Chris Morrell",
"homepage": "http://www.cmorrell.com"
}
],
"license": "MIT",
"require": {
"php": ">=7.1",
"illuminate/support": "^5.5.0|^6.0",
"illuminate/events": "^5.5.0|^6.0",
"illuminate/auth": "^5.5.0|^6.0",
"ext-json": "*",
"webonyx/graphql-php": "^0.13.0",
"symfony/psr-http-message-bridge": "^1.1",
"nyholm/psr7": "^1.2"
},
"require-dev": {
"orchestra/testbench": "^3.0.0",
"phpunit/phpunit": "^7.5",
"php-coveralls/php-coveralls": "^2.1",
"laravel/framework": "^5.7|^6.0"
},
"autoload": {
"psr-4": {
"Galahad\\Medusa\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Galahad\\Medusa\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Galahad\\Medusa\\Support\\MedusaServiceProvider"
],
"aliases": {
"Medusa": "Galahad\\Medusa\\Support\\Facades\\Medusa"
}
}
}
}