Initial commit
This commit is contained in:
50
composer.json
Normal file
50
composer.json
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"name": "zapoyok/cqrs-bundle",
|
||||
"description": "CQRS bundle : interface, bus, Ids, ValueObject, .... ",
|
||||
"license": "MIT",
|
||||
"type": "library",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jérôme Fix",
|
||||
"email": "jerome.fix@zapoyok.info"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": "^8.1",
|
||||
"digital-craftsman/ids": "0.5.*",
|
||||
"symfony/messenger": "^6.2",
|
||||
"psr/clock": "^1.0.0",
|
||||
"symfony/uid": "^6.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"dg/bypass-finals": "^1.4",
|
||||
"friendsofphp/php-cs-fixer": "^3.12",
|
||||
"phpunit/phpunit": "^9.5",
|
||||
"zapoyok/phpunit-php": "@dev",
|
||||
"symfony/phpunit-bridge": "^6.2"
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "vcs",
|
||||
"url": "https://gitlab.zapoyok.info/shared/phpunit-php.git"
|
||||
}
|
||||
],
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Zapoyok\\CQRSBundle\\": "src"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Zapoyok\\Tests\\CQRSBundle\\": "tests"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0.x-dev"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"test": "vendor/bin/phpunit -c phpunit.xml.dist"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user