-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·51 lines (51 loc) · 1.33 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
{
"name": "1pilotapp/symfony-client",
"description": "1Pilot client for Symfony",
"type": "symfony-bundle",
"keywords": [
"1Pilot",
"Symfony",
"monitoring"
],
"license": "MIT",
"authors": [
{
"name": "Francesco Abeni",
"homepage": "https://www.refactory-project.com",
"email": "[email protected]"
},
{
"name": "1Pilot",
"homepage": "https://1pilot.io",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0|^8.0",
"ext-json": "*",
"composer/semver": "^1.4|^2.0|^3.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"guzzlehttp/promises": "^1.0|^2.0",
"symfony/framework-bundle": "^4.4|^5.0|^6.0|^7.0",
"symfony/yaml": "^4.0|^5.0|^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0",
"symfony/browser-kit": "^4.0|^5.0|^6.0|^7.0",
"symfony/phpunit-bridge": "^4.0|^5.0|^6.0|^7.0",
"symfony/mailer": "^4.0|^5.0|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"OnePilot\\ClientBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"OnePilot\\ClientBundle\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}