Initial commit
parents
Showing
.editorconfig
0 → 100644
.env.example
0 → 100644
.gitattributes
0 → 100644
.github/workflows/ci.yml
0 → 100644
.gitignore
0 → 100644
.lando.yml
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "drupal-composer/drupal-project", | |||
"description": "Project template for Drupal 9 projects with Composer", | |||
"type": "project", | |||
"license": "GPL-2.0-or-later", | |||
"authors": [ | |||
{ | |||
"name": "", | |||
"role": "" | |||
} | |||
], | |||
"repositories": [ | |||
{ | |||
"type": "composer", | |||
"url": "https://packages.drupal.org/8" | |||
} | |||
], | |||
"require": { | |||
"php": ">=7.4", | |||
"composer/installers": "^1.9", | |||
"cweagans/composer-patches": "^1.7", | |||
"drupal/core-composer-scaffold": "^9.4", | |||
"drupal/core-recommended": "^9.4", | |||
"drush/drush": "^11.0", | |||
"vlucas/phpdotenv": "^5.1", | |||
"webflo/drupal-finder": "^1.2" | |||
}, | |||
"require-dev": { | |||
"drupal/core-dev": "^9.4" | |||
}, | |||
"conflict": { | |||
"drupal/drupal": "*" | |||
}, | |||
"minimum-stability": "dev", | |||
"prefer-stable": true, | |||
"config": { | |||
"discard-changes": true, | |||
"sort-packages": true, | |||
"allow-plugins": { | |||
"composer/installers": true, | |||
"cweagans/composer-patches": true, | |||
"drupal/core-composer-scaffold": true, | |||
"dealerdirect/phpcodesniffer-composer-installer": 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": { | |||
"drupal-scaffold": { | |||
"locations": { | |||
"web-root": "web/" | |||
} | |||
}, | |||
"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/contrib/{$name}": ["type:drupal-drush"] | |||
}, | |||
"composer-exit-on-patch-failure": true, | |||
"patchLevel": { | |||
"drupal/core": "-p2" | |||
}, | |||
"patches": { | |||
} | |||
} | |||
} |
composer.lock
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
config/sync/.htaccess
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
web/.csslintrc
0 → 100644
web/.eslintignore
0 → 100644
web/.eslintrc.json
0 → 100644
web/.ht.router.php
0 → 100644
web/.htaccess
0 → 100644
web/INSTALL.txt
0 → 100644
web/README.md
0 → 100644
web/autoload.php
0 → 100644
web/example.gitignore
0 → 100644
web/index.php
0 → 100644
web/modules/README.txt
0 → 100644
web/profiles/README.txt
0 → 100644
web/robots.txt
0 → 100644
web/sites/README.txt
0 → 100644
web/sites/example.sites.php
0 → 100644
web/themes/README.txt
0 → 100644
web/update.php
0 → 100644
web/web.config
0 → 100644
Please register or sign in to comment