-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.34 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.34 KB
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
{
"name": "eonx-com/easy-batch",
"description": "Batching async processes made easy",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^8.2",
"doctrine/dbal": "^3.8",
"eonx-com/easy-encryption": "^6.19",
"eonx-com/easy-event-dispatcher": "^6.19",
"eonx-com/easy-lock": "^6.19",
"eonx-com/easy-pagination": "^6.19",
"eonx-com/easy-random": "^6.19",
"eonx-com/easy-utils": "^6.19",
"nesbot/carbon": "^3.8.4",
"symfony/config": "^7.2",
"symfony/dependency-injection": "^7.2",
"symfony/http-kernel": "^7.2",
"symfony/messenger": "^7.2"
},
"require-dev": {
"eonx-com/easy-test": "^6.19",
"phpunit/phpunit": "^10.2|^11.4|^12.4|^13.0"
},
"autoload": {
"psr-4": {
"EonX\\EasyBatch\\": "src",
"EonX\\EasyBatch\\Bundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"EonX\\EasyBatch\\Tests\\": "tests",
"EonX\\EasyBatch\\Tests\\Unit\\": "tests/Unit/src",
"EonX\\EasyBatch\\Tests\\Unit\\Bundle\\": "tests/Unit/bundle"
}
},
"suggest": {
"eonx-com/easy-encryption": "To encrypt/decrypt batch items"
},
"extra": {
"branch-alias": {
"dev-master": "6.19-dev"
}
}
}