forked from rollbar/rollbar-php-symfony-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·53 lines (53 loc) · 1.66 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
{
"name": "rollbar/rollbar-php-symfony-bundle",
"description": "Bundle for Symfony that integrates Rollbar tracker",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "OxCom",
"email": "[email protected]"
},
{
"name": "Artur Moczulski",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Rollbar\\Symfony\\RollbarBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"files": [
"Tests/Fixtures/App/AppKernel.php",
"Tests/Fixtures/ErrorHandler.php"
],
"psr-4": { "Tests\\": "Tests/"}
},
"require": {
"php": ">=8.0.2",
"rollbar/rollbar": "^3.1",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/config": "^5.4|^6.0",
"symfony/http-kernel": "^5.4|^6.0",
"symfony/monolog-bundle": "^3.0",
"symfony/serializer": "^5.4|^6.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/framework-bundle": "^5.4|^6.0",
"squizlabs/php_codesniffer": "^3.6",
"matthiasnoback/symfony-dependency-injection-test": "^4.3"
},
"scripts": {
"test": [
"composer install",
"./vendor/bin/phpcs --standard=psr2 DependencyInjection/ Factories/ Payload/ Tests/DependencyInjection/ Tests/Payload/",
"./vendor/bin/phpunit -c ."
],
"fix": "phpcbf --standard=PSR1,PSR2 DependencyInjection/ Factories/ Payload/ Tests/DependencyInjection/ Tests/Payload/"
}
}