Download the PHP package zizther/craftcms-ddev without Composer

On this page you can find all versions of the php package zizther/craftcms-ddev. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package craftcms-ddev

A Craft CMS starter project using DDEV for local hosting and Vite for front-end bundling and HMR.

Going from zero to Vite HMR on a fresh Craft install, with only 4 CLI commands:

  1. composer create-project...
  2. make init
  3. make setup
  4. make dev

Notable Features:

Local machine prerequisites:

  1. Docker
  2. DDEV, minimum version 1.19
  3. Optional, but recommended, Composer

Getting Started

Option 1: With Composer (recommended)

If you have Composer installed on your local machine, you can use create-project to pull the latest tagged release.

Open terminal prompt, and run:

Make sure that PATH is a new or existing and empty folder.

Option 2: With Git CLI

Alternatively you can clone the repo via the Git CLI. degit is the easiest way:

Make sure that PATH is a new or existing and empty folder.

Last, clean up and set some default files for use:

If you are using git clone

You'll want to discard the existing /.git directory. In the terminal, run:

Option 3: Manual Download

Download a copy of the repo to your local machine and move to where you want to your project to run. Similar to above, you'll then want to clean up and set some default files for use. In the terminal, run:

Configuring DDEV

Note: This section is optional. If you are simply test-driving this project, feel free to skip to the next section. ⚡

To configure your project to operate on a domain other than https://craftcms.test, run:

Follow the prompts.

Installing Craft

To install a clean version of Craft, run:

Follow the prompts.

This command will:

  1. Set the project name and domain
  2. Copy your local SSH keys into the container (handy if you are setting up craft-scripts)
  3. Start your DDEV project
  4. Install Composer
  5. Install npm
  6. Do a one-time build of Vite
  7. Generate CRAFT_APP_ID and save to your .env file
  8. Generate CRAFT_SECURITY_KEY and save to your .env file
  9. Installing Craft for the first time, allowing you to set the admin's account credentials
  10. Install some of the Craft plugins

Once the process is complete, type ddev launch to open the project in your default browser. 🚀

Local development with Vite

To begin development with Vite's dev server & HMR, run:

This command will:

  1. Copy your local SSH keys into the container (handy if you are setting up craft-scripts)
  2. Start your DDEV project
  3. Install Composer
  4. Install npm
  5. Do a one-time build of Vite
  6. Spin up the Vite dev server

Open up a browser to your project domain to verify that Vite is connected. Begin crafting beautiful things. ❤️

Makefile

A Makefile has been included to provide a unified CLI for common development commands.

Tip: If you try a command like make craft project-config/apply --force you’ll see an error, because the shell thinks the --force flag should be applied to the make command. To side-step this, use the -- (double-dash) to disable further option processing, like this: make -- craft project-config/apply --force

Craft CMS Plugins

  1. AWS S3
  2. CKEditor
  3. CP Clear Cache
  4. CP Field Inspect
  5. Craft Autocomplete
  6. Hyper
  7. Navigation
  8. Neo
  9. Quick Field
  10. Ray
  11. Retour
  12. SEOmatic
  13. Vite

Javascript Libraries

  1. Alpine
  2. Body Scroll Locking
  3. Splide
  4. GSAP
  5. Quicklink
  6. Reframe
  7. Vanilla Lazyload

Kudos

Thanks to Andrew (nystudio107) and johndwells for the inspiration


All versions of craftcms-ddev with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package zizther/craftcms-ddev contains the following files

Loading the files please wait ....