-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.61 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": "setono/post-nord-bundle",
"description": "Symfony bundle that integrates the PostNord PHP SDK",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony",
"setono",
"postnord",
"post nord"
],
"require": {
"php": ">=8.1",
"setono/post-nord-php-sdk": "^2.0@alpha",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"infection/infection": "^0.27.11",
"matthiasnoback/symfony-config-test": "^4.3 || ^5.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.3 || ^5.1",
"nyholm/psr7": "^1.1",
"phpunit/phpunit": "^9.6",
"psalm/plugin-phpunit": "^0.19.0",
"setono/code-quality-pack": "^2.7.2",
"symfony/http-client": "^5.4 || ^6.4 || ^7.0"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\PostNordBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Setono\\PostNordBundle\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"php-http/discovery": true
},
"sort-packages": true
},
"scripts": {
"analyse": "psalm",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"phpunit": "phpunit"
}
}