Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/netgen-layouts/layouts-ezplatform
Netgen Layouts & eZ Platform integration
https://github.com/netgen-layouts/layouts-ezplatform
ez-platform layouts php symfony
Last synced: about 2 months ago
JSON representation
Netgen Layouts & eZ Platform integration
- Host: GitHub
- URL: https://github.com/netgen-layouts/layouts-ezplatform
- Owner: netgen-layouts
- License: gpl-2.0
- Created: 2018-08-16T14:37:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-11T12:06:52.000Z (about 1 year ago)
- Last Synced: 2024-11-21T19:45:02.642Z (2 months ago)
- Topics: ez-platform, layouts, php, symfony
- Language: PHP
- Homepage: https://netgen.io/layouts
- Size: 2.3 MB
- Stars: 14
- Watchers: 7
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Netgen Layouts & eZ Platform 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
```