This repository has been archived by the owner on Aug 16, 2022. It is now read-only.
forked from rollbar/rollbar-php-symfony-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·53 lines (53 loc) · 1.62 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": "library",
"license": "MIT",
"authors": [
{
"name": "OxCom",
"email": "lancer.oxcom@gmail.com"
},
{
"name": "Artur Moczulski",
"email": "artur.moczulski@gmail.com"
}
],
"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": ">=7.1",
"rollbar/rollbar": "^2",
"symfony/dependency-injection": "^5.0",
"symfony/config": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/monolog-bundle": "*",
"symfony/serializer": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"symfony/framework-bundle": "^5.0",
"squizlabs/php_codesniffer": "^2.7",
"matthiasnoback/symfony-dependency-injection-test": "^1.1"
},
"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/"
}
}