-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.38 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
58
59
60
{
"name": "webrgp/craft-ignition",
"description": "Ignition error handling alternative for Craft CMS.",
"type": "yii2-extension",
"license": "MIT",
"authors": [
{
"name": "Rodrigo Passos",
"homepage": "https://rodrigopassos.com"
}
],
"keywords": [
"craft",
"cms",
"craftcms",
"error",
"error-reporting",
"ignition",
"php"
],
"require": {
"php": "^8.0",
"craftcms/cms": "^4.3.0 || ^5.0.0",
"spatie/ignition": "^1.15"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main",
"vlucas/phpdotenv": "^5.4.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"webrgp\\ignition\\": "src/"
}
},
"scripts": {
"phpstan": "phpstan --ansi --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --fix --ansi"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"bootstrap": "webrgp\\ignition\\Ignition"
},
"support": {
"issues": "https://github.com/webrgp/craft-ignition/issues?state=open",
"source": "https://github.com/webrgp/craft-ignition",
"docs": "https://github.com/webrgp/craft-ignition/blob/master/README.md"
}
}