sulu-demo

(★ 92)

Sulu Demo Project

File Explorer

  • .editorconfig
  • .env
  • .env.dev
  • .env.stage
  • .env.test
  • .eslintrc
  • .gitignore
  • .gitlab-ci.yml
  • .npmrc
  • .php-cs-fixer.dist.php
  • .php-version
  • .postcssrc.js
  • .stylelintrc
  • compose.override.yaml
  • compose.yaml
  • composer.json
  • composer.lock
  • package.json
  • php.ini
  • phpstan-baseline.neon
  • phpstan.dist.neon
  • phpunit.xml.dist
  • README.md
  • rector.php
  • symfony.lock
  • webpack.config.js
  • yarn.lock

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

composer

View Details ▼

A package-based dependency manager for PHP projects.

composer init

Interactively create a `composer.json` file:

composer require {{user/package}}

Add a package as a dependency for this project, adding an entry to `composer.json`:

composer install

Install all the dependencies in this project's `composer.json` and create `composer.lock`:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

php

View Details ▼

PHP command-line interface.

php {{path/to/file}}

Parse and execute a PHP script:

php {{[-l|--syntax-check]}} {{path/to/file}}

Check syntax on (i.e. [l]int) a PHP script:

php {{[-a|--interactive]}}

Run PHP inter[a]ctively:

// repository documentation