-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
45 lines (45 loc) · 940 Bytes
/
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
{
"name": "yireo/magento2-whoops",
"version": "0.2.2",
"license": "OSL-3.0",
"type": "magento2-module",
"homepage": "https://www.yireo.com/software/magento-extensions/extension/153-whoops/category/2",
"description": "Magento 2 module adding Whoops error handling",
"keywords": [
"composer-installer",
"magento",
"Whoops",
"Magento 2",
"Exception",
"Yireo"
],
"authors": [
{
"name": "Jisse Reitsma (Yireo)",
"email": "jisse@yireo.com"
}
],
"require": {
"magento/framework": "^102.0|^103.0",
"filp/whoops": "^2.1",
"symfony/var-dumper": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"composer/composer": "*@dev"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"autoload": {
"psr-4": {
"Yireo\\Whoops\\": ""
},
"files": [
"registration.php"
]
}
}