Skip to content

netgen-layouts/layouts-ibexa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d3474cb · Nov 23, 2023
Sep 12, 2023
Sep 12, 2023
Sep 12, 2023
Sep 12, 2023
Dec 15, 2022
Jun 29, 2018
Dec 15, 2022
Feb 17, 2022
Mar 14, 2023
Mar 13, 2023
May 31, 2019
Dec 9, 2022
Aug 16, 2018
Dec 9, 2022
May 31, 2019
Nov 23, 2023
Dec 15, 2022
Mar 16, 2023
Sep 12, 2023
Jun 1, 2023
Jun 1, 2023
Feb 15, 2023

Repository files navigation

Netgen Layouts & Ibexa CMS integration

Installation instructions

INSTALL.md

Running tests

Running tests requires that you have complete vendors installed, so run composer install before running the tests.

You can run unit tests by simply calling vendor/bin/phpunit from the repo root. This will use an in memory SQLite database.

You can also run unit tests on a real database. After you create the database, run the tests with:

$ DATABASE=mysql://root@localhost/nglayouts vendor/bin/phpunit

where mysql://root@localhost/nglayouts is a DSN to your MySQL database.

If you use PostgreSQL, you can use the following command:

$ DATABASE=pgsql://user:pass@localhost/nglayouts vendor/bin/phpunit