Skip to content

Commit 4cc6485

Browse files
authored
Merge pull request #8 from answear/support-symfony6
Support Symfony6
2 parents 3421e10 + 1f777f6 commit 4cc6485

File tree

3 files changed

+53
-47
lines changed

3 files changed

+53
-47
lines changed

.github/workflows/phpunit.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
matrix:
1313
php-version:
1414
- "7.4"
15+
- "8.0"
16+
- "8.1"
1517
deps:
1618
- "normal"
1719
include:

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
matrix:
1313
php-version:
1414
- "7.4"
15-
15+
- "8.0"
16+
- "8.1"
1617
steps:
1718
- name: "Checkout"
1819
uses: "actions/checkout@v2"

composer.json

Lines changed: 49 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,52 @@
11
{
2-
"name": "answear/dpd-pl-pickup-services-bundle",
3-
"description": "DPD.pl Pickup Services integration for Symfony.",
4-
"type": "symfony-bundle",
5-
"license": "MIT",
6-
"require": {
7-
"php": "^7.4 || ^8.0",
8-
"ext-simplexml": "*",
9-
"guzzlehttp/guzzle": "^6.0",
10-
"marc-mabe/php-enum": "^4.3",
11-
"symfony/http-kernel": "^4.4 || ^5.0",
12-
"webmozart/assert": "^1.3"
13-
},
14-
"require-dev": {
15-
"friendsofphp/php-cs-fixer": "^2.16",
16-
"phpstan/phpstan": "^0.12.32",
17-
"phpstan/phpstan-webmozart-assert": "^0.12.2",
18-
"phpro/grumphp": "^0.20",
19-
"phpunit/phpunit": "^8.0",
20-
"roave/security-advisories": "dev-master",
21-
"symfony/phpunit-bridge": "^5.0"
22-
},
23-
"autoload": {
24-
"psr-4": {
25-
"Answear\\DpdPlPickupServicesBundle\\": "src/"
2+
"name": "answear/dpd-pl-pickup-services-bundle",
3+
"description": "DPD.pl Pickup Services integration for Symfony.",
4+
"type": "symfony-bundle",
5+
"license": "MIT",
6+
"require": {
7+
"php": "^7.4 || ^8.0",
8+
"ext-simplexml": "*",
9+
"guzzlehttp/guzzle": "^6.0|^7.0",
10+
"marc-mabe/php-enum": "^4.3",
11+
"symfony/http-kernel": "^5.4|^6.0",
12+
"webmozart/assert": "^1.3"
13+
},
14+
"require-dev": {
15+
"friendsofphp/php-cs-fixer": "^3.4",
16+
"phpstan/phpstan": "^1.4",
17+
"phpstan/phpstan-webmozart-assert": "^1.0",
18+
"phpro/grumphp": "^1.5.0",
19+
"phpunit/phpunit": "^9.5",
20+
"roave/security-advisories": "dev-master",
21+
"symfony/phpunit-bridge": "6.1.*"
22+
},
23+
"autoload": {
24+
"psr-4": {
25+
"Answear\\DpdPlPickupServicesBundle\\": "src/"
26+
}
27+
},
28+
"autoload-dev": {
29+
"psr-4": {
30+
"Answear\\DpdPlPickupServicesBundle\\Tests\\": "tests/"
31+
}
32+
},
33+
"scripts": {
34+
"post-install-cmd": [
35+
"GrumPHP\\Composer\\DevelopmentIntegrator::integrate"
36+
],
37+
"post-update-cmd": [
38+
"GrumPHP\\Composer\\DevelopmentIntegrator::integrate"
39+
]
40+
},
41+
"extra": {
42+
"grumphp": {
43+
"config-default-path": "grumphp.yaml"
44+
}
45+
},
46+
"config": {
47+
"sort-packages": true,
48+
"allow-plugins": {
49+
"phpro/grumphp": true
50+
}
2651
}
27-
},
28-
"autoload-dev": {
29-
"psr-4": {
30-
"Answear\\DpdPlPickupServicesBundle\\Tests\\": "tests/"
31-
}
32-
},
33-
"scripts": {
34-
"post-install-cmd": [
35-
"GrumPHP\\Composer\\DevelopmentIntegrator::integrate"
36-
],
37-
"post-update-cmd": [
38-
"GrumPHP\\Composer\\DevelopmentIntegrator::integrate"
39-
]
40-
},
41-
"extra": {
42-
"grumphp": {
43-
"config-default-path": "grumphp.yaml"
44-
}
45-
},
46-
"config": {
47-
"sort-packages": true
48-
}
4952
}

0 commit comments

Comments
 (0)