-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 981 Bytes
/
Copy pathcomposer.json
File metadata and controls
41 lines (41 loc) · 981 Bytes
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
{
"name": "bluzphp/bluzman",
"description": "Bluzman - Simple workflow manager for Bluz Framework",
"version": "0.2.2",
"type": "library",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Bluzman Contributors",
"homepage": "https://github.com/bluzphp/bluzman/graphs/contributors"
}
],
"require": {
"php": ">=5.4",
"composer/composer": "dev-master",
"symfony/console": "~2.6.6",
"symfony/event-dispatcher": "~2.5",
"symfony/filesystem": "~2.5",
"symfony/finder": "~2.5",
"symfony/process": "~2.5",
"symfony/yaml": "~2.5",
"Respect/Validation": ">=0.5.0",
"bluzphp/framework": "~0.5"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"mockery/mockery": "~0.9",
"nelmio/alice": "~1.5",
"fzaninotto/faker": "~1.4"
},
"scripts": {
"test": "make test"
},
"autoload": {
"psr-4": {
"Bluzman\\": "src",
"Bluzman\\Tests\\": "tests"
}
}
}