netgen / layouts-ezplatform
Netgen Layouts & eZ Platform integration
Installs: 35 074
Dependents: 4
Suggesters: 0
Security: 0
Stars: 14
Watchers: 7
Forks: 2
Open Issues: 0
Type:symfony-bundle
Requires
- ezsystems/ezplatform-admin-ui: ^1.5 || ^2.3
- ezsystems/ezplatform-http-cache: ^1.0 || ^2.3
- netgen/content-browser-ezplatform: ^1.4
- netgen/layouts-core: ~1.4.9
Requires (Dev)
- matthiasnoback/symfony-config-test: ^4.2
- matthiasnoback/symfony-dependency-injection-test: ^4.2
- netgen/layouts-coding-standard: ^2.0
- netgen/tagsbundle: ^3.4 || ^4.0
- phpstan/phpstan: ^1.9
- phpstan/phpstan-phpunit: ^1.3
- phpstan/phpstan-strict-rules: ^1.4
- phpstan/phpstan-symfony: ^1.2
- phpunit/phpunit: ^9.6
- symfony/phpunit-bridge: ^5.4
- symfony/var-dumper: ^3.4 || ^5.4
- vimeo/psalm: ^4.30 || ^5.4
Suggests
- netgen/layouts-ezplatform-site-api: Integrate Netgen Layouts with eZ Platform Site API to boost your site-building productivity with eZ Platform
This package is auto-updated.
Last update: 2024-10-11 14:09:09 UTC
README
Installation instructions
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