summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..49cce09
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,38 @@
+{
+ "name": "league/tactician",
+ "description": "A small, flexible command bus. Handy for building service layers.",
+ "keywords": ["command", "command bus", "service layer"],
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Ross Tuck",
+ "homepage": "http://tactician.thephpleague.com"
+ }
+ ],
+ "require": {
+ "php": ">=5.5"
+ },
+ "require-dev": {
+ "mockery/mockery": "~0.9",
+ "phpunit/phpunit": "^4.8.35",
+ "squizlabs/php_codesniffer": "~2.3"
+ },
+ "autoload": {
+ "psr-4": {
+ "League\\Tactician\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "League\\Tactician\\Tests\\": "tests/"
+ },
+ "files": [
+ "tests/Fixtures/Command/CommandWithoutNamespace.php"
+ ]
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0-dev"
+ }
+ }
+}