-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.07 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
{
"name": "luyadev/luya-headless",
"description": "LUYA headless API client",
"type": "luya-core",
"keywords": [
"php",
"yii2",
"luya",
"headless"
],
"license": "MIT",
"homepage": "https://luya.io",
"authors": [
{
"name": "Basil Suter",
"email": "[email protected]",
"homepage": "https://github.com/nadar"
}
],
"require": {
"curl/curl": "^2.0",
"psr/simple-cache": "^1.0",
"luyadev/yii-helpers": "^1.4"
},
"require-dev": {
"luyadev/luya-testsuite": "^2.0",
"nadar/github-markdown-fixer": "^1.0"
},
"autoload": {
"psr-4": {
"luya\\headless\\": "src/",
"luya\\headless\\tests\\": "tests/"
}
},
"suggest": {
"symfony/cache": "A very fast PSR-16 caching library easy to setup for caching API responses."
},
"config": {
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"luyadev/luya-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}