-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.21 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.21 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
{
"name": "lin3s/shared-kernel",
"description": "Shared Kernel of LIN3S projects for different purposes",
"keywords": ["lin3s", "shared-kernel", "ddd", "bounded-context"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "LIN3S",
"email": "info@lin3s.com",
"homepage": "https://lin3s.com"
}
],
"require": {
"php": "^7.1",
"doctrine/collections": "^1.3",
"giggsey/libphonenumber-for-php": "^8.4",
"keyvanakbary/slugifier": "^4.0",
"ramsey/uuid": "^3.5",
"uvinum/zipcodevalidator": "^1.0",
"ulabox/nif-validator": "^1.2",
"jschaedl/iban": "^1.3"
},
"require-dev": {
"doctrine/orm": "^2.5",
"phpspec/phpspec": "^4.0",
"lin3s/php-cs-fixer-config": "^1.0"
},
"scripts": {
"cs": [
"php-cs-fixer fix --config=.php_cs",
"php-cs-fixer fix --config=.phpspec_cs"
]
},
"autoload": {
"psr-4": {
"LIN3S\\SharedKernel\\": "src/LIN3S/SharedKernel/",
"LIN3S\\SharedKernel\\Tests\\": "tests/"
},
"exclude-from-classmap": [
"tests/"
]
}
}