-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathcomposer.json
36 lines (36 loc) · 1.07 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
{
"name": "ethanyehuda/magento2-cronjobmanager",
"description": "A module for managing scheduled cron jobs from magento's admin panel",
"require": {
"php": "~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0",
"ext-posix": "*",
"magento/framework": "^101.0 || ^102.0 || ^103.0",
"magento/module-backend": "^100.0 || ^101.0 || ^102.0",
"magento/module-cron": "^100.0",
"magento/module-store": "^100.0 || ^101.0",
"magento/module-ui": "^100.0 || ^101.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/console": "^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"ext-pcntl": "*"
},
"type": "magento2-module",
"license": "OSL-3.0",
"autoload": {
"psr-4": {
"EthanYehuda\\CronjobManager\\": ""
},
"files": [
"registration.php"
],
"exclude-from-classmap": [
"/Test/"
]
},
"autoload-dev": {
"psr-4": {
"EthanYehuda\\CronjobManager\\Test": "Test/"
}
}
}