-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.04 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "lin3s/cms-kernel",
"description": "Base package to make CMS in an easy way",
"keywords": ["lin3s", "cms-kernel", "ddd", "bounded-context"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "LIN3S",
"email": "info@lin3s.com",
"homepage": "https://lin3s.com"
}
],
"require": {
"php": "^5.6 || ^7.0",
"ext-intl": "*",
"lin3s/shared-kernel": ">=0.3",
"twig/extensions": "^1.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.12",
"phpspec/phpspec": "^3.2"
},
"config": {
"sort-packages": true
},
"scripts": {
"cs": [
"php-cs-fixer fix --config-file=.php_cs",
"php-cs-fixer fix --config-file=.phpspec_cs"
]
},
"autoload": {
"psr-4": {
"LIN3S\\CMSKernel\\": "src/LIN3S/CMSKernel/",
"LIN3S\\CMSKernel\\Tests\\": "tests/"
},
"exclude-from-classmap": [
"tests/"
]
}
}