-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.28 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
{
"name": "answear/focus-contact-center-bundle",
"description": "API client for Focus Contact Center",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0|^7.0",
"webmozart/assert": "^1.3"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "6.1.*",
"phpro/grumphp": "^1.5.0",
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-webmozart-assert": "^1.0"
},
"autoload": {
"psr-4": {
"Answear\\FocusContactCenterBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Answear\\FocusContactCenterBundle\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"GrumPHP\\Composer\\DevelopmentIntegrator::integrate"
],
"post-update-cmd": [
"GrumPHP\\Composer\\DevelopmentIntegrator::integrate"
]
},
"extra": {
"grumphp": {
"config-default-path": "grumphp.yaml"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}