forked from drupal8-rector/drupal8-rector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.28 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
{
"name": "drupal8-rector/drupal8-rector",
"description": "Instant fixes for your Drupal 8 code by using Rector.",
"type": "library",
"keywords": [
"code style",
"rector",
"drupal 8",
"phpcs",
"ast"
],
"require": {
"jawira/case-converter": "^1.1",
"rector/rector": "0.4.12"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14"
},
"license": "MIT",
"authors": [
{
"name": "Dezső Biczó",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Drupal8Rector\\": "src"
}
},
"config": {
"optimize-autoloader": true,
"update-with-dependencies": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check-style": "php-cs-fixer fix --config=./.php_cs.dist --dry-run",
"fix-style": "php-cs-fixer fix --config=./.php_cs.dist",
"download-drupal-core": "@composer create-project drupal-composer/drupal-project:8.x-dev .drupal --no-interaction",
"update-drupal-core": "@composer update drupal/core webflo/drupal-core-require-dev --with-dependencies -d .drupal"
}
}