ramlev / drupal-base
Base Drupal 10 project template for composer based projects.
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.3
- composer/installers: ~1.0 || ~2.0
- cweagans/composer-patches: ^1.6.0
- drupal/admin_toolbar: ^3.5
- drupal/adminimal_theme: ^1.7
- drupal/core-composer-scaffold: ^10.1
- drupal/core-project-message: ^10.1
- drupal/core-recommended: ^10.1
- drupal/module_filter: ^5.0
- drupal/pathauto: ^1.13
- drupal/redirect: ^1.10
- drupal/simple_sitemap: ^4.2
- drupal/token: ^1.15
- drupal/twig_tweak: ^3.4
- drupal/ultimate_cron: ^2.0@alpha
- drush/drush: ^12.0
- szeidler/composer-patches-cli: ^1.0
Requires (Dev)
- drupal/devel: ^5.3
- drupal/ray_debugger: ^1.0
- drupal/webprofiler: ^10.1
- mglaman/phpstan-drupal: ^1.2
- phpstan/extension-installer: ^1.4
This package is auto-updated.
Last update: 2025-03-05 08:35:59 UTC
README
This project template provides a fast kickstart to a new Drupal site.
Installation
I assume you know basic Composer and PHP skills.
composer create-project ramlev/drupal-base:dev-develop --no-interaction YOUR_DIR
After that, you can setup your LAMP or whatever based webserver. I normally use DDEV.
With that, you can do something like this.
cd YOUR_DIR ddev config ## press enter to everything ddev start ## Wait until it's up and running ## Install the default site ddev drush si -y ## Change admin user password ddev drush upwd admin test Now you can login with `admin` / `test`
Available contrib modules
- admin_toolbar
- adminimal_theme
- module_filter
- pathauto
- redirect
- simple_sitemap
- token
- twig_tweak
- ultimate_cron
- drush
And some modules, only added with "dev"
- devel
- ray_debugger
- phpstan
Add even more features
You can add more contribs and so on like normally
## Go into your dir cd YOUR_DIR ## Add the search_api contrib module, or whatever needed. composer req drupal/search_api
Go into Drupal admin and enable whatever modules and / or themes you need.
Happy hacking
Hasse Ramlev Wilson
Ramlev.dk