-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.57 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
56
57
58
59
60
61
{
"name": "answear/payum-pay-u",
"type": "symfony-bundle",
"description": "PayU gateway for payum",
"keywords": [
"payment",
"payum",
"payu"
],
"license": "MIT",
"require": {
"php": "^8.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"payum/core": "^1.7.5",
"php-http/guzzle7-adapter": "^1.0",
"php-http/message": "<1.16.0",
"symfony/http-kernel": "^6.0|^7.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.64",
"matthiasnoback/symfony-config-test": "^5.2",
"phpro/grumphp": "^1.16",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^11.0.1",
"roave/security-advisories": "dev-latest",
"symfony/phpunit-bridge": "^7.1"
},
"autoload": {
"psr-4": {
"Answear\\Payum\\": "core/",
"Answear\\Payum\\PayU\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Answear\\Payum\\PayU\\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
}
}
}