-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
41 lines (41 loc) · 1.13 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
{
"name": "svnwa/laravel-strapi",
"description": "This package provides an implementation to consume the Strapi REST API.",
"license": "MIT",
"authors": [
{
"name": "Sven Walbröl",
"email": "svnwal.dev@gmail.com",
"homepage": "http://sven-walbroel.de"
}
],
"homepage": "https://github.com/svnwa/laravel-strapi",
"keywords": ["Laravel", "LaravelStrapi","Strapi","REST","Headless CMS","Laravel Headless CMS", "Laravel CMS"],
"require": {
"illuminate/support": ">=9"
},
"require-dev": {
"phpunit/phpunit": ">=9.0",
"orchestra/testbench": ">=7"
},
"autoload": {
"psr-4": {
"Svnwa\\LaravelStrapi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Svnwa\\LaravelStrapi\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Svnwa\\LaravelStrapi\\LaravelStrapiServiceProvider"
],
"aliases": {
"LaravelStrapi": "Svnwa\\LaravelStrapi\\Facades\\LaravelStrapi"
}
}
}
}