PHPackages                             contao/contao - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. contao/contao

ActiveSymfony-bundle[Framework](/categories/framework)

contao/contao
=============

Contao Open Source CMS development package

5.7.5(1mo ago)42614.3k172[359 issues](https://github.com/contao/contao/issues)[70 PRs](https://github.com/contao/contao/pulls)2LGPL-3.0-or-laterPHPPHP ^8.3CI passing

Since Aug 23Pushed 3w ago33 watchersCompare

[ Source](https://github.com/contao/contao)[ Packagist](https://packagist.org/packages/contao/contao)[ Docs](https://contao.org)[ Fund](https://to.contao.org/donate)[ RSS](/packages/contao-contao/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependencies (302)Versions (384)Used By (2)Security (22)

[![](https://camo.githubusercontent.com/1ca1ead7ff4bc1f4b151d214fecdc6a320633b10b91c4e79effc834004a26da9/68747470733a2f2f636f6e74616f2e6f72672f66696c65732f636f6e74616f2f6c6f676f2f636f6e74616f2d6c6f676f2d636f72706f726174652e737667)](https://camo.githubusercontent.com/1ca1ead7ff4bc1f4b151d214fecdc6a320633b10b91c4e79effc834004a26da9/68747470733a2f2f636f6e74616f2e6f72672f66696c65732f636f6e74616f2f6c6f676f2f636f6e74616f2d6c6f676f2d636f72706f726174652e737667)

[![](https://github.com/contao/contao/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/contao/contao/actions)[![](https://camo.githubusercontent.com/8bc3c8cdb31b61cfaa4122447586520150c8b4a63cb8c1d4f2d9b45d9f13ea51/68747470733a2f2f636f6465636f762e696f2f67682f636f6e74616f2f636f6e74616f2f6272616e63682f6d61696e2f67726170682f62616467652e737667)](https://codecov.io/gh/contao/contao)[![](https://camo.githubusercontent.com/552fff47d2d16e849604b159d9f5dbb99aa5aa149703cefedb59584179bc9723/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636f6e74616f2f636f6e74616f2e737667)](https://packagist.org/packages/contao/contao)

About
-----

[](#about)

Contao is a powerful open source CMS that allows you to create professional websites and scalable web applications. Visit the [project website](https://contao.org) for more information.

Purpose
-------

[](#purpose)

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

The monorepo is automatically split into separate packages:

- [CalendarBundle](https://github.com/contao/calendar-bundle)
- [CommentsBundle](https://github.com/contao/comments-bundle)
- [CoreBundle](https://github.com/contao/core-bundle)
- [FaqBundle](https://github.com/contao/faq-bundle)
- [ListingBundle](https://github.com/contao/listing-bundle)
- [MakerBundle](https://github.com/contao/maker-bundle)
- [ManagerBundle](https://github.com/contao/manager-bundle)
- [NewsBundle](https://github.com/contao/news-bundle)
- [NewsletterBundle](https://github.com/contao/newsletter-bundle)

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

Platinum partners
-----------------

[](#platinum-partners)

Thanks to our platinum partners for helping us fund the development of Contao.

[![](https://camo.githubusercontent.com/099c4df58fa544c1bd39685abdd506a43549cfde6560a8c16a78af4cfffedd6e/68747470733a2f2f636f6e74616f2e6f72672f66696c65732f75706c6f6164732f706172746e65722d6c6f676f732f363838392d706f7374796f752e737667)](https://postyou.de)

Development
-----------

[](#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](https://github.com/contao/managed-edition). Start by installing it in your current directory:

```
composer create-project --no-install contao/managed-edition
```

Replace `` with the directory where you want to install the Managed Edition (use `.` for the current directory). Replace `` with `dev-main` if you want to add a new feature, or with `.x-dev` (currently `5.3.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": "^8.4",
    "contao/contao": "dev-main"
},
```

Again, use `dev-main` if you want to add a new feature or `.x-dev` if you want to fix a bug.

Next, install the dependencies:

```
composer update
```

Composer automatically clones the Git repository into the `vendor/contao/contao` folder. You can complete the setup by running `vendor/bin/contao-setup` on the command line.

Any changes you make in `vendor/contao/contao` will be tracked via Git, so you can submit your pull request directly from your application.

Running scripts
---------------

[](#running-scripts)

First install the code quality tools in `vendor/contao/contao`:

```
composer update
composer bin all install
```

Then run the code quality scripts via Composer:

```
composer all
```

You can also run the scripts separately:

```
composer rector
composer ecs
composer service-linter
composer monorepo-tools
composer unit-tests
composer functional-tests
composer phpstan
composer depcheck
```

Use the `--` argument to pass additional flags to the underlying commands:

```
composer unit-tests -- --filter CoreBundle
composer ecs -- --clear-cache
```

Functional tests
----------------

[](#functional-tests)

To set up the functional tests, create a database named `contao_test`:

```
mysql -e "CREATE DATABASE contao_test"
```

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

```

```

Then run the functional tests via Composer:

```
composer functional-tests
```

Node.js
-------

[](#nodejs)

To build the assets, you need a Node.js version &gt;= 18.12. Then run these commands:

```
npm ci
npm run build
```

End-to-end tests
----------------

[](#end-to-end-tests)

The Contao end-to-end tests are availabe as an [NPM package](https://www.npmjs.com/package/contao-e2e-tests). You can install and run them like this:

```
npm install contao-e2e-tests --save-dev
npx contao-e2e-tests
```

License
-------

[](#license)

Contao is licensed under the terms of the LGPLv3.

Sponsors
--------

[](#sponsors)

- Thanks to [JetBrains](https://www.jetbrains.com/?from=Contao) for kindly providing licenses for their products.
- Thanks to [Blackfire](https://www.blackfire.io) for kindly providing a free open source subscription.
- This project is tested with [BrowserStack](https://www.browserstack.com).

Getting support
---------------

[](#getting-support)

Visit the [support page](https://to.contao.org/support) to learn about the available support options.

###  Health Score

68

—

FairBetter than 99% of packages

Maintenance77

Regular maintenance activity

Popularity47

Moderate usage in the ecosystem

Community39

Small or concentrated contributor base

Maturity97

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 79.2% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~7 days

Total

383

Last Release

24d ago

Major Versions

4.13.54 → 5.3.302025-03-18

4.13.55 → 5.3.372025-08-13

4.13.56 → 5.6.12025-08-28

4.13.57 → 5.3.422025-11-25

4.13.58 → 5.3.432025-11-26

PHP version history (9 changes)4.6.0PHP ^7.1

4.4.22PHP ^5.6 || ^7.0

4.9.0-RC1PHP ^7.2

4.9.10PHP ^7.2 || ^8.0

4.11.0-RC1PHP ^7.3 || ^8.0

4.13.0-RC1PHP ^7.4 || ^8.0

5.0.0-RC1PHP ^8.1

5.5.0-RC1PHP ^8.2

5.7.0-RC1PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/3de3a0dd7c29df679eb280585220c17c1a7340b46c2792d5e8298be859acfbba?d=identicon)[leofeyer](/maintainers/leofeyer)

![](https://www.gravatar.com/avatar/8c7bdddffcaec444b7891b633f45fe2713d2b04ff21a6362fd748720d0822d58?d=identicon)[ausi](/maintainers/ausi)

---

Top Contributors

[![leofeyer](https://avatars.githubusercontent.com/u/1192057?v=4)](https://github.com/leofeyer "leofeyer (22092 commits)")[![aschempp](https://avatars.githubusercontent.com/u/1073273?v=4)](https://github.com/aschempp "aschempp (1596 commits)")[![ausi](https://avatars.githubusercontent.com/u/367169?v=4)](https://github.com/ausi "ausi (994 commits)")[![Toflar](https://avatars.githubusercontent.com/u/481937?v=4)](https://github.com/Toflar "Toflar (854 commits)")[![fritzmg](https://avatars.githubusercontent.com/u/4970961?v=4)](https://github.com/fritzmg "fritzmg (660 commits)")[![m-vo](https://avatars.githubusercontent.com/u/5305677?v=4)](https://github.com/m-vo "m-vo (415 commits)")[![zoglo](https://avatars.githubusercontent.com/u/55794780?v=4)](https://github.com/zoglo "zoglo (218 commits)")[![bytehead](https://avatars.githubusercontent.com/u/754921?v=4)](https://github.com/bytehead "bytehead (167 commits)")[![tristanlins](https://avatars.githubusercontent.com/u/343404?v=4)](https://github.com/tristanlins "tristanlins (161 commits)")[![xchs](https://avatars.githubusercontent.com/u/1218766?v=4)](https://github.com/xchs "xchs (130 commits)")[![qzminski](https://avatars.githubusercontent.com/u/193483?v=4)](https://github.com/qzminski "qzminski (116 commits)")[![discordier](https://avatars.githubusercontent.com/u/940331?v=4)](https://github.com/discordier "discordier (107 commits)")[![dmolineus](https://avatars.githubusercontent.com/u/1186266?v=4)](https://github.com/dmolineus "dmolineus (54 commits)")[![lukasbableck](https://avatars.githubusercontent.com/u/42083846?v=4)](https://github.com/lukasbableck "lukasbableck (47 commits)")[![marcobiedermann](https://avatars.githubusercontent.com/u/5244986?v=4)](https://github.com/marcobiedermann "marcobiedermann (32 commits)")[![bezin](https://avatars.githubusercontent.com/u/4400435?v=4)](https://github.com/bezin "bezin (30 commits)")[![richardhj](https://avatars.githubusercontent.com/u/1284725?v=4)](https://github.com/richardhj "richardhj (28 commits)")[![rabauss](https://avatars.githubusercontent.com/u/14016098?v=4)](https://github.com/rabauss "rabauss (27 commits)")[![psi-4ward](https://avatars.githubusercontent.com/u/1191572?v=4)](https://github.com/psi-4ward "psi-4ward (24 commits)")[![SeverinGloeckle](https://avatars.githubusercontent.com/u/1193129?v=4)](https://github.com/SeverinGloeckle "SeverinGloeckle (21 commits)")

---

Tags

cmscontaomonorepophpsymfony

### Embed Badge

![Health badge](/badges/contao-contao/health.svg)

```
[![Health](https://phpackages.com/badges/contao-contao/health.svg)](https://phpackages.com/packages/contao-contao)
```

###  Alternatives

[contao/core-bundle

Contao Open Source CMS

1231.6M2.7k](/packages/contao-core-bundle)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.4M518](/packages/shopware-core)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9317.2k55](/packages/open-dxp-opendxp)[chameleon-system/chameleon-base

The Chameleon System core.

1027.9k4](/packages/chameleon-system-chameleon-base)[shopware/platform

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
