-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 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
42
43
44
45
46
{
"name" : "luyadev/luya-module-errorapi",
"description" : "To create strong and secure website its important to know all exceptions before your customer knows the exceptions and to make sure the exception happends only once.",
"type" : "luya-module",
"keywords" : ["php", "luya", "module", "errorapi", "yii2", "yii", "luya-module"],
"license": "MIT",
"homepage" : "https://luya.io",
"authors" : [
{
"name" : "Basil Suter",
"email" : "[email protected]",
"homepage" : "https://github.com/nadar"
}
],
"require": {
"nadar/parser": "^1.0"
},
"require-dev" : {
"luyadev/luya-testsuite" : "^2.0",
"vlucas/phpdotenv": "^2.5"
},
"support" : {
"issues" : "https://github.com/luyadev/luya-module-errorapi/issues"
},
"autoload" : {
"psr-4" : {
"luya\\errorapi\\" : "src/",
"luya\\errorapi\\tests\\" : "tests/"
}
},
"config": {
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"luyadev/luya-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}