-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
59 lines (59 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "damax/common",
"type": "library",
"description": "Utilities and helpers for building DDD apps and APIs.",
"license": "MIT",
"require": {
"php": "^7.2.5"
},
"require-dev": {
"doctrine/inflector": "^1.3",
"doctrine/orm": "^2.6",
"enqueue/enqueue": "^0.8.42",
"friendsofphp/php-cs-fixer": "^2.15",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"long-running/long-running": "^0.4",
"pagerfanta/pagerfanta": "^2.0",
"php-coveralls/php-coveralls": "^2.2",
"ramsey/uuid": "^3.9",
"sensio/framework-extra-bundle": "^5.5",
"simple-bus/message-bus": "^3.0",
"symfony/console": "^4.4 || ^5.0",
"symfony/framework-bundle": "^4.4 || ^5.0",
"symfony/phpunit-bridge": "^4.4 || ^5.0",
"symfony/serializer": "^4.4 || ^5.0",
"symfony/validator": "^4.4 || ^5.0",
"symfony/web-link": "^4.4 || ^5.0",
"twig/twig": "^3.0"
},
"autoload": {
"psr-4": { "Damax\\Common\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Damax\\Common\\Tests\\": "tests/" }
},
"scripts": {
"cs": "php-cs-fixer fix",
"test": "simple-phpunit",
"test-cc": "phpdbg -qrr ./vendor/bin/simple-phpunit --coverage-html=build/phpunit"
},
"config": {
"sort-packages": true
},
"archive": {
"exclude": [
"/sample",
"/tests",
"/.gitignore",
"/.php_cs.dist",
"/.travis.yml",
"/Makefile",
"/phpunit.xml.dist"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}