-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
43 lines (43 loc) · 1.05 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
{
"name": "connehito/cake-sentry",
"description": "Sentry plugin for CakePHP",
"type": "cakephp-plugin",
"require": {
"php": "^7.2 || ^8.0",
"cakephp/cakephp": "^4.0",
"sentry/sentry": "^3.2"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "@stable",
"jangregor/phpstan-prophecy": "@stable",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "@stable",
"phpunit/phpunit": "^8.5 || ^9.3",
"symfony/http-client": "^5.2"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Connehito\\CakeSentry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Connehito\\CakeSentry\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs-check": "phpcs --colors -p ./src ./tests/TestCase"
},
"config": {
"sort-packages": true
},
"authors": [
{
"name": "Hideki Kinjyo",
"email": "[email protected]",
"role": "Maintainer"
}
]
}