-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcomposer.json
executable file
·56 lines (56 loc) · 1.69 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
54
55
56
{
"name": "oxcom/symfony-rollbar-bundle",
"description": "Bundle for Symfony that integrates Rollbar tracker",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony",
"rollbar",
"errors",
"bundle"
],
"authors": [
{
"name": "OxCom",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "SymfonyRollbarBundle\\": "./" },
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": { "Tests\\": "Tests/"},
"files": [
"Tests/Fixtures/app/AppKernel.php"
]
},
"require": {
"php": ">=5.6",
"monolog/monolog": "^1.23",
"rollbar/rollbar": "^1.8",
"symfony/dependency-injection": "^2.8|~3.4.26|~4.0|~4.1|~4.2|~4.3|~4.4",
"symfony/config": "^2.8|~3.0|~4.0|~4.1|~4.2|~4.3|~4.4",
"symfony/http-kernel": "^2.8|~3.4.35|~4.0|~4.1|~4.2|~4.3|~4.4",
"symfony/console": "^2.8|~3.0|~4.0|~4.1|~4.2|~4.3|~4.4",
"guzzlehttp/guzzle": "^6.3",
"symfony/polyfill-mbstring": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.5|^7.5",
"doctrine/doctrine-fixtures-bundle": "^2.3",
"squizlabs/php_codesniffer": "^3.2",
"matthiasnoback/symfony-dependency-injection-test": "^1.2|^2.3|^3.1.0",
"symfony/phpunit-bridge": "^4.0",
"twig/twig": "^1.38|^2.7"
},
"scripts": {
"test": [
"composer install",
"./vendor/bin/phpcs --standard=psr2 DependencyInjection/ EventListener/ Provider/ Tests/SymfonyRollbarBundle",
"./vendor/bin/phpunit"
]
}
}