-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 1.05 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
{
"name": "bamiz/use-case-executor-bundle",
"type": "library",
"description": "A Symfony Bundle that provides tools facilitating the isolation of business logic of your application from the delivery mechanisms.",
"homepage": "https://github.com/bartosz-zasada/use-case-executor-bundle",
"license": "MIT",
"authors": [
{
"name" : "Bartosz Zasada",
"email" : "zasada.bartosz@gmail.com",
"role" : "Developer"
}
],
"require": {
"php": ">=5.5.0",
"bamiz/use-case-executor": "0.5.0",
"doctrine/annotations": "^1.0",
"symfony/dependency-injection": "~2.3|~3.0",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/serializer": "~2.3|~3.0",
"symfony/form": "~2.3|~3.0",
"symfony/options-resolver": "~2.3|~3.0",
"symfony/templating": "~2.3|~3.0"
},
"require-dev": {
"phpspec/phpspec": "^3.0"
},
"autoload": {
"psr-4" : {
"Bamiz\\UseCaseExecutorBundle\\" : ""
}
}
}