-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 937 Bytes
/
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
{
"name": "gally/oro-plugin",
"description": "Oro connector for Gally",
"homepage": "https://meetgally.com",
"type": "oro-platform-plugin",
"license": "OSL-3.0",
"version": "2.0.0",
"extra": {
"oro-plugin-class": "Gally\\OroPlugin\\GallyOroPlugin",
"author": "Gally Team",
"label": {
"en-GB": "Gally Plugin"
}
},
"require": {
"php": "~8.2.0 || ~8.3.0",
"gally/gally-php-rest-sdk": "dev-feat-new-sdk",
"oro/commerce": "^5.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"phpstan/phpstan": "*",
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Gally\\OroPlugin\\": "src/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": false,
"symfony/flex": false,
"php-http/discovery": false
}
}
}