Commit inicial
parents
Showing
.env.example
0 → 100644
.gitignore
0 → 100644
.travis.yml
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
README.md
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "drupal-composer/drupal-project", | ||
"description": "Project template for Drupal 8 projects with composer", | ||
"type": "project", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "NIC Argentina", | ||
"role": "" | ||
} | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://packages.drupal.org/8" | ||
} | ||
], | ||
"require": { | ||
"composer/installers": "^1.2", | ||
"cweagans/composer-patches": "^1.6", | ||
"drupal-composer/drupal-scaffold": "^2.5", | ||
"drupal/console": "^1.0.2", | ||
"drupal/core": "~8.5.3", | ||
"drush/drush": "^9.0.0", | ||
"vlucas/phpdotenv": "^2.4", | ||
"webflo/drupal-finder": "^1.0.0", | ||
"webmozart/path-util": "^2.3", | ||
"drupal/pathauto": "1.2", | ||
"drupal/ctools": "^3.0", | ||
"drupal/token": "^1.3", | ||
"drupal/bootstrap": "^3.12", | ||
"drupal/bootstrap_layouts": "^5.1", | ||
"drupal/views_bootstrap": "^3.0", | ||
"drupal/metatag": "^1.5", | ||
"drupal/extlink": "^1.1", | ||
"drupal/easy_breadcrumb": "^1.8", | ||
"drupal/rename_admin_paths": "^1.1" | ||
}, | ||
"require-dev": { | ||
"webflo/drupal-core-require-dev": "~8.5.3" | ||
}, | ||
"conflict": { | ||
"drupal/drupal": "*" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"autoload": { | ||
"classmap": [ | ||
"scripts/composer/ScriptHandler.php" | ||
], | ||
"files": ["load.environment.php"] | ||
}, | ||
"scripts": { | ||
"pre-install-cmd": [ | ||
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion" | ||
], | ||
"pre-update-cmd": [ | ||
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion" | ||
], | ||
"post-install-cmd": [ | ||
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles" | ||
], | ||
"post-update-cmd": [ | ||
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles" | ||
] | ||
}, | ||
"extra": { | ||
"installer-paths": { | ||
"web/core": ["type:drupal-core"], | ||
"web/libraries/{$name}": ["type:drupal-library"], | ||
"web/modules/contrib/{$name}": ["type:drupal-module"], | ||
"web/profiles/contrib/{$name}": ["type:drupal-profile"], | ||
"web/themes/contrib/{$name}": ["type:drupal-theme"], | ||
"drush/Commands/{$name}": ["type:drupal-drush"] | ||
}, | ||
"drupal-scaffold": { | ||
"initial": { | ||
".editorconfig": "../.editorconfig", | ||
".gitattributes": "../.gitattributes" | ||
} | ||
} | ||
} | ||
} |
drush/README.md
0 → 100644
drush/drush.yml
0 → 100644
drush/sites/self.site.yml
0 → 100644
load.environment.php
0 → 100644
phpunit.xml.dist
0 → 100644
Please register or sign in to comment