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
Feb 11, 2025
Mar 17, 2025
Mar 5, 2025
Mar 26, 2025
Mar 26, 2025
Jan 27, 2025
Mar 5, 2025
Mar 11, 2025
Mar 26, 2025
Mar 15, 2025
Mar 26, 2025
Nov 24, 2024
Mar 26, 2025
Feb 2, 2024
Mar 11, 2024
Mar 5, 2025
Mar 19, 2025
Mar 19, 2025
Mar 26, 2025
Oct 8, 2024
Jan 29, 2025
Oct 8, 2024
Oct 8, 2024
Jan 17, 2025
Oct 8, 2024
Oct 8, 2024
Jan 29, 2025
Jun 19, 2024
Mar 5, 2025
Mar 10, 2025
Aug 28, 2022
Mar 18, 2025
Oct 26, 2022
Oct 31, 2021
Jan 27, 2017
Apr 6, 2021
Feb 11, 2025
May 16, 2023
Oct 25, 2022
Jun 13, 2024
Oct 6, 2015
Nov 10, 2024
Oct 9, 2019
Mar 18, 2025
Mar 15, 2024
Nov 27, 2024
Feb 2, 2024
Oct 15, 2024

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.

Installation and Setup

If you want to install Neos, please have a look at the installation & setup documentation: https://docs.neos.io/guide/installation-development-setup

For (specific) documentation on Neos 9, read on below...

Contributing

If you want to contribute to Neos and want to set up a development environment, then please read the instructions in CONTRIBUTING.md

For (specific) documentation on Neos 9, read on below...

Neos 9 and the Event-Sourced Content Repository (ES CR)

Prerequisites

  • You need PHP 8.2 installed.
  • Please be sure to run off the Neos development distribution in branch 9.0, to avoid dependency issues.

Setup

Follow the usual configuration steps (as for Neos 8) to install Composer dependencies and configure the database connection in Settings.yaml Then:

  1. Run Doctrine Migrations:

    ./flow doctrine:migrate
    FLOW_CONTEXT=Testing/Postgres ./flow doctrine:migrate
  2. Setup the Content Repository

    ./flow cr:setup

Site Setup

You can chose from one of the following options:

Creating a new Site

./flow site:create neosdemo Neos.Demo Neos.Demo:Document.Homepage

Migrating an existing (Neos < 9.0) Site

# the following config points to a Neos 8.0 database (adjust to your needs)
./flow site:exportLegacyData --path ./migratedContent --config '{"dbal": {"dbname": "neos80"}, "resourcesPath": "/path/to/neos-8.0/Data/Persistent/Resources"}'
# import the migrated data
./flow site:importAll --path ./migratedContent

Importing an existing (Neos >= 9.0) Site from an Export

./flow site:importAll --package-key Neos.Demo

Running Neos

./flow server:run