-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.08 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
{
"name": "aligent/orocommerce-abn-bundle",
"description": "OroCommerce Bundle to add an ABN to the customer registration form and Customer Entity",
"type": "library",
"license": "OSL-3.0",
"authors": [
{
"name": "Adam Hall",
"email": "[email protected]",
"homepage": "http://www.aligent.com.au/"
}
],
"repositories": {
"oro": {
"type": "composer",
"url": "https://packagist.orocrm.com"
}
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"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 || ~3.4.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"
},
"autoload": {
"psr-4": {
"Aligent\\ABNBundle\\": "./src/"
},
"exclude-from-classmap": [
"src/Tests/"
]
}
}