-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.05 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
{
"name": "aligent/oro-geo-detection",
"description": "A Bundle for OroCommerce to provide application level geo-detection using the maxmind db",
"type": "library",
"license": "GPL-3.0",
"authors": [
{
"name": "Adam Hall",
"email": "[email protected]"
}
],
"repositories": {
"oro": {
"type": "composer",
"url": "https://packagist.orocrm.com"
}
},
"autoload": {
"psr-4": {
"Aligent\\GeoDetectionBundle\\": "./src/"
}
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"oro/commerce": "5.0.*",
"geoip2/geoip2": "~2.0",
"guzzlehttp/guzzle": "^7.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"
}
}