Skip to content

The unified repository containing the Neos core packages, used for Neos development.

License

Notifications You must be signed in to change notification settings

neos/neos-development-collection

Folders and files

NameName
Last commit message
Last commit date
Jan 10, 2025
Feb 4, 2025
Feb 2, 2024
Nov 2, 2023
Jan 9, 2025
Feb 18, 2025
Mar 4, 2025
Feb 18, 2025
Jul 16, 2024
Jan 29, 2025
Jul 16, 2024
Jul 16, 2024
Jan 9, 2025
Jul 16, 2024
Jul 16, 2024
Jan 29, 2025
Feb 2, 2024
Dec 21, 2016
Oct 10, 2024
Oct 26, 2022
Oct 31, 2021
Jan 27, 2017
Apr 6, 2021
Feb 11, 2025
Nov 27, 2020
Oct 25, 2022
Oct 6, 2015
May 5, 2023
Oct 9, 2019
Oct 10, 2024
Feb 2, 2024

Repository files navigation

Code Climate StyleCI Latest Stable Version License Documentation Slack Discussion Forum Issues Translation Twitter

Neos development collection

This repository is a collection of packages for the Neos content application platform (learn more on https://www.neos.io/). The repository is used for development and all pull requests should go into it.

If you want to install Neos, please have a look at the documentation: https://neos.readthedocs.org/en/latest/

Contributing

If you want to contribute to Neos and want to set up a development environment, then follow these steps:

composer create-project neos/neos-development-distribution neos-development 8.3.x-dev --keep-vcs

Note the -distribution repository you create a project from, instead of just checking out this repository.

If you need a different branch, you can either use it from the start (replace the 8.3.x-dev by 9.0.x-dev or whatever you need), or switch after checkout (just make sure to run composer update afterwards to get matching dependencies installed.) In a nutshell, to switch the branch you intend to work on, run:

git checkout 9.0 && composer update

The code of the CMS can then be found inside Packages/Neos, which itself is the neos-development-collection Git repository. You commit changes and create pull requests from this repository.

In the root directory of the development distribution, you can do the following things:

To run tests, run ./bin/phpunit -c ./Build/BuildEssentials/PhpUnit/UnitTests.xml for unit tests or ./bin/phpunit -c ./Build/BuildEssentials/PhpUnit/FunctionalTests.xml for functional/integration tests.

Note

We use an upmerging strategy: create all bugfixes to the lowest maintained branch that contains the issue. Typically, this is the second last LTS release - see the diagram at https://www.neos.io/features/release-process.html.

For new features, pull requests should be made against the branch for the next minor version (named like x.y). Breaking changes must only go into the branch for the next major version.

For more detailed information, see https://discuss.neos.io/t/development-setup/504, https://discuss.neos.io/t/creating-a-pull-request/506 and https://discuss.neos.io/t/git-branch-handling-in-the-neos-project/6013