Skip to content

Commit 3111b0d

Browse files
authored
Merge pull request #103 from LinioPay/feat/add-php-8.2-support
feat: add php 8.2 support
2 parents ed93802 + 72fa960 commit 3111b0d

30 files changed

+2603
-1743
lines changed

composer.json

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,20 @@
1717
}
1818
],
1919
"require": {
20-
"php": "~7.2",
20+
"php": ">= 8.2",
2121
"ext-json": "*",
22-
"symfony/process": "~3|~4|~5",
23-
"jeremeamia/superclosure": "~2",
22+
"symfony/process": "^6.3",
2423
"lstrojny/hmmmath": ">=0.5.0",
25-
"guzzlehttp/guzzle": "^6.3",
26-
"slim/slim": "^3.12",
27-
"friendsofphp/php-cs-fixer": "^2.16",
28-
"sensiolabs/security-checker": "^6.0"
24+
"guzzlehttp/guzzle": "^7.8",
25+
"slim/slim": "^4.12",
26+
"friendsofphp/php-cs-fixer": "^3.16",
27+
"charescape/serialize-closure": "^3.8",
28+
"pimple/pimple": "^3.5",
29+
"fig/http-message-util": "^1.1"
2930
},
3031
"require-dev": {
31-
"internations/testing-component": "1.3.0",
32-
"phpunit/phpunit": "^7"
32+
"internations/testing-component": "1.4.0",
33+
"phpunit/phpunit": "^9"
3334
},
3435
"autoload": {
3536
"psr-4": {
@@ -42,9 +43,6 @@
4243
}
4344
},
4445
"scripts": {
45-
"auto-scripts": [
46-
"@security-check"
47-
],
4846
"post-install-cmd": [
4947
"@auto-scripts"
5048
],
@@ -57,8 +55,11 @@
5755
"lint:check": [
5856
"@lint --dry-run"
5957
],
60-
"security-check": [
61-
"security-checker security:check"
62-
]
58+
"tests": "phpunit"
59+
},
60+
"config": {
61+
"allow-plugins": {
62+
"php-http/discovery": false
63+
}
6364
}
6465
}

0 commit comments

Comments
 (0)