-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
38 lines (38 loc) · 989 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
{
"name": "zepgram/module-multi-threading",
"description": "This module is a powerful tool for developers who want to process large data sets in a short amount of time",
"type": "magento2-module",
"version": "0.1.6",
"authors": [
{
"name": "Benjamin Calef",
"email": "zepgram@gmail.com"
}
],
"require": {
"magento/framework": "^101.0.0|^102.0.0|^103.0.0",
"magento/module-store": "^101",
"ext-pcntl": "*",
"ext-posix": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Zepgram\\MultiThreading\\": ""
}
},
"license": "MIT",
"repositories": {
"repo.magento.com": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
}
}