This repository was archived by the owner on Nov 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.52 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "php-quartz/app",
"type": "project",
"license": "MIT",
"description": "Job Time Scheduler App",
"keywords": ["job", "time", "task", "time scheduler", "quartz", "chrono"],
"require": {
"php": "^7.2",
"symfony/console": "^3|^4",
"symfony/flex": "^1.0",
"symfony/framework-bundle": "^3|^4",
"symfony/yaml": "^3|^4",
"makasim/yadm": "^0.5.7",
"makasim/values": "^0.5.2",
"enqueue/amqp-lib": "^0.9",
"php-quartz/bundle": "^0.2"
},
"require-dev": {
"symfony/dotenv": "^3|^4",
"phpunit/phpunit": "^5.5",
"enqueue/null": "^0.9"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Quartz\\App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Quartz\\App\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"make cache-warmup": "script"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*",
"symfony/twig-bundle": "<3.3",
"symfony/debug": "<3.3"
},
"extra": {
"symfony": {
"id": "01BJQZD7YBT9JB0NGH2G58754G",
"allow-contrib": false
},
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}