-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
52 lines (52 loc) · 1.41 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
47
48
49
50
51
52
{
"name": "synolia/orocommerce-stock-alert-plugin",
"keywords": [
"orocommerce",
"orocommerce-plugin",
"stock",
"stock-alert"
],
"description": "OroCommerce Stock Alert Plugin",
"homepage": "https://github.com/synolia/OroCommerceStockAlertPlugin",
"license": "EUPL-1.2",
"authors": [
{
"name": "Synolia",
"homepage": "http://www.synolia.com"
}
],
"autoload": {
"psr-4": {"Synolia\\Bundle\\StockAlertBundle\\": "src/Synolia/Bundle/StockAlertBundle"},
"exclude-from-classmap": ["/Tests/"]
},
"require": {
"php": "~8.3.0",
"oro/commerce": "6.0.*"
},
"repositories": {
"oro": {
"type": "composer",
"url": "https://packagist.orocrm.com"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"enlightn/security-checker": "^1.9",
"friendsofphp/php-cs-fixer": "^3.13",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpmd/phpmd": "^2.13",
"phpro/grumphp": "^1.15",
"phpspec/phpspec": "^7.2",
"phpstan/phpstan": "^1.5"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp": true,
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true
}
}
}