From ab26206c8d1545466b3aae1c2edd5eb7158c916c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 3 Jan 2019 11:56:10 +0100 Subject: new package --- composer.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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" + } + } +} -- cgit