-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 1.02 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
{
"name": "aboutcoders/workflow-bundle",
"type": "symfony-bundle",
"description": "A symfony bundle that allows to define and manage workflows",
"keywords": ["job", "workflow", "schedule", "scheduler", "bundle", "request", "task", "background", "asynchronous"],
"homepage": "https://github.com/aboutcoders/workflow-bundle",
"license": "MIT",
"authors": [
{
"name": "Wojciech Ciolko",
"email": "w.ciolko@gmail.com"
}
],
"require": {
"symfony/symfony": "~3.1",
"sensio/framework-extra-bundle": "~3.0",
"gedmo/doctrine-extensions": "~2.0",
"aboutcoders/job-bundle": "~1.0",
"aboutcoders/sequence-bundle": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "~1.2",
"symfony/monolog-bundle": "~2",
"symfony/swiftmailer-bundle": "~2.3"
},
"autoload": {
"psr-4": {"Abc\\Bundle\\WorkflowBundle\\": ""}
}
}