-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.5 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.5 KB
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": "kreta/shared-kernel",
"description": "Shared Kernel of Kreta",
"keywords": [
"project",
"manager",
"development",
"tool",
"shared-kernel"
],
"homepage": "https://kreta.io",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Beñat Espiña Diaz",
"email": "benatespina@gmail.com",
"homepage": "http://benatespina.com"
},
{
"name": "Gorka Laucirica Ibarra",
"email": "gorka.lauzirika@gmail.com",
"homepage": "http://gorkalaucirica.net"
}
],
"require": {
"php": "^7.1",
"ajgl/simple-bus-query-bus": "^0.1",
"doctrine/collections": "^1.3",
"keyvanakbary/slugifier": "^4.0",
"simple-bus/message-bus": "^2.2",
"ramsey/uuid": "^3.5"
},
"require-dev": {
"doctrine/orm": "^2.5",
"kreta/php-cs-fixer-config": "^1.0",
"phpspec/phpspec": "^3.2"
},
"scripts": {
"cs": [
"php-cs-fixer fix --config=etc/phpcs/.php_cs -v",
"php-cs-fixer fix --config=etc/phpcs/.phpspec_cs -v"
]
},
"autoload": {
"psr-4": {
"Kreta\\SharedKernel\\": "src/Kreta/SharedKernel/",
"Kreta\\SharedKernel\\Tests\\": "tests/"
},
"exclude-from-classmap": [
"tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}