All Projects → contao → Contao

contao / Contao

Licence: lgpl-3.0
Contao Open Source CMS

Projects that are alternatives of or similar to Contao

Sulu
Core framework that implements the functionality of the Sulu content management system
Stars: ✭ 645 (+256.35%)
Mutual labels:  cms, symfony
Sonatapagebundle
This bundle provides a Site and Page management through container and block services
Stars: ✭ 181 (+0%)
Mutual labels:  cms, symfony
Symedit
Symfony2 Content Management System
Stars: ✭ 6 (-96.69%)
Mutual labels:  cms, symfony
Symplify
Do you use Symfony, Coding Standards, maintain PHP packages, automate monorepo, generate static website and are you lazy? You'll love the candies you find here! :)
Stars: ✭ 430 (+137.57%)
Mutual labels:  symfony, monorepo
Personal Management System
Your web application for managing personal data. <[email protected]>
Stars: ✭ 2,027 (+1019.89%)
Mutual labels:  cms, symfony
Pagekit
Pagekit CMS
Stars: ✭ 5,455 (+2913.81%)
Mutual labels:  cms, symfony
Forkcms
Fork is an easy to use open source CMS using Symfony Components.
Stars: ✭ 1,112 (+514.36%)
Mutual labels:  cms, symfony
Ezplatform
Meta repository that pulls in all dependencies for clean distribution of Ibexa Platform.
Stars: ✭ 322 (+77.9%)
Mutual labels:  cms, symfony
Syliuscmsplugin
Content management system for eCommerce apps created on Sylius platform. Built with Sylius code quality, flexibility, BDD.
Stars: ✭ 178 (-1.66%)
Mutual labels:  cms, symfony
Beetbox
Pre-provisioned L*MP stack
Stars: ✭ 94 (-48.07%)
Mutual labels:  cms, symfony
Bolt
Bolt is a simple CMS written in PHP. It is based on Silex and Symfony components, uses Twig and either SQLite, MySQL or PostgreSQL.
Stars: ✭ 4,136 (+2185.08%)
Mutual labels:  cms, symfony
Php Ddd Example
🐘🎯 Hexagonal Architecture + DDD + CQRS in PHP using Symfony 5
Stars: ✭ 1,960 (+982.87%)
Mutual labels:  symfony, monorepo
Kunstmaanbundlescms
An advanced yet user-friendly content management system, based on the full stack Symfony framework combined with a whole host of community bundles. It provides a full featured, multi-language CMS system with an innovative page and form assembling process, versioning, workflow, translation and media managers and much more.
Stars: ✭ 346 (+91.16%)
Mutual labels:  cms, symfony
Sulu Standard
This repository is not longer the recommended way to start a sulu project. Use:
Stars: ✭ 636 (+251.38%)
Mutual labels:  cms, symfony
Jarves
Jarves CMS/Application Framework based on Symfony - Alpha material
Stars: ✭ 325 (+79.56%)
Mutual labels:  cms, symfony
Ezplatform Demo
Fork of "ezplatform" meta repository, contains code and dependencies for demo distribution of eZ Platform. Not recommended for a clean install for new projects, but great for observation and learning!
Stars: ✭ 42 (-76.8%)
Mutual labels:  cms, symfony
Unite Cms
Really flexible headless CMS, built on top of Symfony and GraphQL.
Stars: ✭ 242 (+33.7%)
Mutual labels:  cms, symfony
Core
🧿 Bolt 4 core
Stars: ✭ 243 (+34.25%)
Mutual labels:  cms, symfony
Web Publisher
Superdesk Publisher - the next generation publishing platform for journalists and newsrooms.
Stars: ✭ 82 (-54.7%)
Mutual labels:  cms, symfony
Core Bundle
[READ-ONLY] Contao Core Bundle
Stars: ✭ 113 (-37.57%)
Mutual labels:  cms, symfony

GitHub Codecov Packagist

About

Contao is a powerful open source CMS that allows you to create professional websites and scalable web applications. Visit the project website for more information.

Purpose

The purpose of this package is to develop the Contao bundles. Use it if you e.g. want to create a pull request or if you want to report an issue.

The monorepo is split into separate packages automatically:

Please do not use contao/contao in production! Use the split packages instead.

Development

To create a pull request and to test your changes within a running Contao application, it is the easiest to use the Contao Managed Edition. Start by installing it in your current directory:

composer create-project --no-install contao/managed-edition <directory> <branch>

Replace <directory> with the directory you want to install the Managed Edition in (use . for the current one). Replace <branch> with 4.x-dev if you want to add a new feature or with <lts-version>.x-dev (currently 4.9.x-dev) if you want to fix a bug.

Then adjust the require section in your composer.json file so Composer loads the monorepo instead of the individual bundles:

"require": {
    "php": "^7.2",
    "contao/contao": "4.x-dev"
},

Again, use 4.x-dev if you want to add a new feature or <lts-version>.x-dev if you want to fix a bug.

Next, install the dependencies:

composer update

Composer will automatically clone the Git repo into the vendor/contao/contao folder. You can finish your setup by opening https://your-domain.local/contao/install in your browser.

All the changes you make in vendor/contao/contao are tracked via Git, so you can submit your pull request directly from within your application.

Running scripts

First install the code quality tools:

composer bin all update

Then run the code quality scripts via Composer:

composer run all
composer run unit-tests
composer run cs-fixer
composer run phpstan
composer run psalm

If you want to pass additional flags to the underlying commands, you can use the -- argument:

composer run unit-tests -- --filter CoreBundle
composer run cs-fixer -- --clear-cache

Functional tests

To set up functional tests, create a database named contao_test and import the core-bundle/tests/Functional/app/Resources/contao_test.sql file.

mysql -e "CREATE DATABASE contao_test"
mysql contao_test < core-bundle/tests/Functional/app/Resources/contao_test.sql

If your database uses credentials, copy the file core-bundle/phpunit.xml.dist to core-bundle/phpunit.xml and adjust the following line:

<php>
    <env name="DATABASE_URL" value="mysql://[email protected]:3306/contao_test" />
</php>

Then run the functional tests via the run command:

composer run functional-tests

License

Contao is licensed under the terms of the LGPLv3.

Getting support

Visit the support page to learn about the available support options.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].