-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.5 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
{
"name": "cakephp-biztech/cake-rollbar",
"description": "CakePHP plugin integration for Rollbar",
"type": "cakephp-plugin",
"keywords": ["cakephp", "cakephp-plugin", "rollbar", "error-tracking"],
"license": "MIT",
"homepage": "https://github.com/cakephp-biztech/cakephp-rollbar",
"support": {
"issues": "https://github.com/cakephp-biztech/cakephp-rollbar/issues",
"source": "https://github.com/cakephp-biztech/cakephp-rollbar"
},
"authors": [
{
"name": "CakePHP Biztech",
"role": "Author"
}
],
"require": {
"cakephp/cakephp": ">=3.5.0 <4.0.0",
"rollbar/rollbar": "~1.5"
},
"require-dev": {
"phpunit/phpunit": "^5.7.14|^6.0",
"cakephp/cakephp-codesniffer": "^3.0",
"phpstan/phpstan": "^0.12.32"
},
"autoload": {
"psr-4": {
"CakeRollbar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeRollbar\\Test\\": "tests/",
"CakeRollbar\\TestApp\\": "tests/test_app/src"
}
},
"scripts": {
"check": [
"@cs-check",
"@test:types",
"@test"
],
"cs-fix": "vendor/bin/phpcbf --extensions=php ./src ./tests",
"cs-check": "vendor/bin/phpcs -p --extensions=php ./src ./tests",
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test": "phpunit --colors=always",
"test-setup": "cp phpunit.xml.dist phpunit.xml"
}
}