Commit inicial
parents
No related branches found
No related tags found
Showing
- .env.example 27 additions, 0 deletions.env.example
- .gitignore 24 additions, 0 deletions.gitignore
- .travis.yml 51 additions, 0 deletions.travis.yml
- LICENSE 339 additions, 0 deletionsLICENSE
- README.md 48 additions, 0 deletionsREADME.md
- composer.json 87 additions, 0 deletionscomposer.json
- drush/Commands/PolicyCommands.php 38 additions, 0 deletionsdrush/Commands/PolicyCommands.php
- drush/README.md 1 addition, 0 deletionsdrush/README.md
- drush/drush.yml 7 additions, 0 deletionsdrush/drush.yml
- drush/sites/self.site.yml 15 additions, 0 deletionsdrush/sites/self.site.yml
- load.environment.php 20 additions, 0 deletionsload.environment.php
- phpunit.xml.dist 15 additions, 0 deletionsphpunit.xml.dist
- scripts/composer/ScriptHandler.php 100 additions, 0 deletionsscripts/composer/ScriptHandler.php
.env.example
0 → 100644
.gitignore
0 → 100644
.travis.yml
0 → 100644
LICENSE
0 → 100644
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/Commands/PolicyCommands.php
0 → 100644
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
scripts/composer/ScriptHandler.php
0 → 100644
Please register or sign in to comment