-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·55 lines (55 loc) · 1.5 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
{
"name": "answear/inpost-pickup-point-bundle",
"description": "API Client for Inpost.",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^8.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0|^7.0",
"phpstan/phpstan-deprecation-rules": "^1.2",
"symfony/http-kernel": "^6.1|^7.0",
"symfony/property-info": "^6.1|^7.0",
"symfony/serializer": "^6.1|^7.0",
"symfony/serializer-pack": "^1.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpro/grumphp": "^2.8",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-master",
"symfony/phpunit-bridge": "6.2.*|^7.0"
},
"autoload": {
"psr-4": {
"Answear\\InpostBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Answear\\InpostBundle\\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": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp": true
}
}
}