-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.22 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
{
"name": "aligent/braintree-orocommerce",
"license": "MIT",
"type": "symfony-bundle",
"description": "A Braintree Payments module for OroCommerce.",
"authors": [
{
"name": "Aligent",
"homepage": "https://www.aligent.com.au"
}
],
"repositories": {
"oro": {
"type": "composer",
"url": "https://packagist.orocrm.com"
}
},
"autoload": {
"psr-4": { "Aligent\\BraintreeBundle\\": "./src/" }
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"braintree/braintree_php": "6.10.*",
"php": "~7.4.14 || ~8.0.0",
"oro/commerce": "4.2.*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.7",
"phpmd/phpmd": "^2.12",
"friendsofphp/php-cs-fixer": "~2.18.2 || ~3.1.0",
"nelmio/alice": "~3.8.0 || ~3.9.0",
"theofidry/alice-data-fixtures": "~1.4.0 || ~1.5.0",
"symfony/phpunit-bridge": "~4.4.24 || ~6.1.0",
"squizlabs/php_codesniffer": "^3.6"
},
"extra": {
"npm": {
"braintree-web-drop-in": "1.32.1"
}
}
}