Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/netgen-layouts/layouts-ibexa
Netgen Layouts & Ibexa DXP integration
https://github.com/netgen-layouts/layouts-ibexa
ibexa layouts php symfony
Last synced: about 2 months ago
JSON representation
Netgen Layouts & Ibexa DXP integration
- Host: GitHub
- URL: https://github.com/netgen-layouts/layouts-ibexa
- Owner: netgen-layouts
- License: gpl-2.0
- Created: 2022-02-17T08:33:15.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-11T12:02:17.000Z (about 1 year ago)
- Last Synced: 2024-03-23T14:03:18.534Z (10 months ago)
- Topics: ibexa, layouts, php, symfony
- Language: PHP
- Homepage: https://netgen.io/layouts
- Size: 2.06 MB
- Stars: 2
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Netgen Layouts & Ibexa CMS integration
## Installation instructions
[INSTALL.md](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
```