-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1008 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
{
"name": "ldubois/cake-bugsnag",
"description": "bugsnag plugin for CakePHP4",
"type": "cakephp-plugin",
"require": {
"php": "^8.3",
"cakephp/cakephp": "^4.0",
"bugsnag/bugsnag": "^3.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^3.0",
"jangregor/phpstan-prophecy": "*",
"phpstan/phpstan": "@stable",
"phpunit/phpunit": "^8.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Ldubois\\Bugsnag\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ldubois\\Bugsnag\\Test\\": "tests/",
"App\\": "tests/test_app/app/src/"
}
},
"scripts": {
"test": "phpunit",
"cs-check": "phpcs --colors -p ./src"
},
"config": {
"sort-packages": true
},
"authors": [
{
"name": "Ludovic Dubois",
"email": "[email protected]",
"role": "Maintainer"
}
]
}