-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (43 loc) · 1.13 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
40
41
42
43
{
"name": "league/tactician-bernard",
"description": "Queueing command bus plugin for Tactician based on Bernard",
"license": "MIT",
"keywords": ["bernard", "tactician", "command-bus", "message queue"],
"homepage": "http://tactician.thephpleague.com",
"authors": [
{
"name": "Márk Sági-Kazár",
"email": "mark.sagikazar@gmail.com"
}
],
"require": {
"bernard/bernard": "^1.0@dev",
"beberlei/assert": "^2.1",
"league/tactician": "^1.0"
},
"require-dev": {
"phpspec/phpspec": "^2.5",
"henrikbjorn/phpspec-code-coverage": "^2.0"
},
"autoload": {
"psr-4": {
"League\\Tactician\\Bernard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\League\\Tactician\\Bernard\\": "spec/"
}
},
"scripts": {
"test": "vendor/bin/phpspec run",
"test-ci": "vendor/bin/phpspec run -c phpspec.ci.yml"
},
"extra": {
"branch-alias": {
"dev-master": "0.7-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}