-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1006 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
38
39
40
41
42
{
"name": "fond-of-oryx/jellyfish-sales-order-payone",
"description": "JellyfishSalesOrderPayone module.",
"license": "MIT",
"authors": [
{
"name": "Julian Hyatt",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"fond-of-oryx/jellyfish-sales-order-extension": "^1.0.0 || ^2.0.0",
"spryker-eco/payone": "^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0",
"spryker/payment": "^4.0.0 || ^5.0.0"
},
"require-dev": {
"fond-of-codeception/spryker": "*",
"spryker/code-sniffer": "*",
"spryker-sdk/phpstan-spryker": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"FondOfOryx\\": "src/FondOfOryx/"
}
},
"autoload-dev": {
"psr-4": {
"FondOfOryx\\": "tests/FondOfOryx/",
"Generated\\": "src/Generated/",
"Orm\\": "src/Orm/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}