-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.42 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
{
"name": "janwebdev/symfony-omnipay-bundle",
"description": "Omnipay bundle for Symfony 4.4 / 5.x / 6.x",
"keywords": ["omnipay", "bundle", "symfony", "payment", "php", "gateway", "credit card"],
"homepage": "https://github.com/janwebdev/symfony-omnipay-bundle",
"license": "MIT",
"authors": [
{
"name": "Yan Rogozinsky",
"email": "[email protected]",
"role": "PHP developer"
}
],
"require": {
"ext-json": "*",
"php": "^7.4|^8.0|^8.1",
"league/omnipay": "^3",
"symfony/framework-bundle": "^4.4||^5.4||^6",
"symfony/cache": "^4.4||^5.4||^6"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpro/grumphp": "^1.3",
"omnipay/tests": "^4",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^1.7.10",
"omnipay/paypal": "^3.0",
"php-http/guzzle7-adapter": "^1.0.0"
},
"autoload": {
"psr-4": {
"Janwebdev\\OmnipayBundle\\": "",
"Janwebdev\\OmnipayBundle\\Tests\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"scripts": {
"test": "./vendor/bin/grumphp run"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
},
"minimum-stability": "beta",
"prefer-stable": true
}