-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1014 Bytes
/
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
{
"name": "nuvoleweb/drupal-middle-format-migration",
"type": "project",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.6",
"drupal/drupal-driver": "^1.4",
"league/fractal": "^0.17.0",
"symfony/config": "^3.4",
"symfony/console": "^3.4",
"symfony/dependency-injection": "^3.4",
"symfony/http-kernel": "^3.4",
"symfony/yaml": "^3.4"
},
"require-dev": {
"cweagans/composer-patches": "~1.0",
"phpro/grumphp": "^0.14.3",
"squizlabs/php_codesniffer": "^3.5"
},
"config": {
"sort-packages": true,
"platform": {
"php": "5.6"
}
},
"extra": {
"enable-patching": true,
"composer-exit-on-patch-failure": true
},
"autoload": {
"psr-4": {
"NuvoleWeb\\DrupalMigration\\": "./src/"
},
"files": [
"app/AppKernel.php"
]
}
}