-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (35 loc) · 1.03 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
{
"name": "clavicula-nox/pendingactions-bundle",
"type": "symfony-bundle",
"description": "Symfony PendingActionsBundle. A simple way to delay and schedule the execution of heavy tasks !",
"keywords": ["delay", "symfony", "bundle"],
"homepage": "https://github.com/Clavicula-Nox/PendingActionsBundle",
"license": "MIT",
"authors": [
{
"name": "Adrien Lochon",
"email": "adrien@claviculanox.io"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"symfony/framework-bundle": "^3.4",
"doctrine/doctrine-bundle": "^1.4",
"doctrine/orm": "^2.4",
"symfony/yaml": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "~6.0"
},
"autoload": {
"psr-4": {
"ClaviculaNox\\PendingActionsBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"ClaviculaNox\\PendingActionsBundle\\Tests\\": "Tests/"
}
}
}