https://github.com/netgen-layouts/layouts-standard
Netgen Layouts enables you to build and manage complex web pages in a simpler way and with less coding. This package provides a set of most used blocks and layouts for building content rich web sites.
https://github.com/netgen-layouts/layouts-standard
layouts php symfony
Last synced: 3 months ago
JSON representation
Netgen Layouts enables you to build and manage complex web pages in a simpler way and with less coding. This package provides a set of most used blocks and layouts for building content rich web sites.
- Host: GitHub
- URL: https://github.com/netgen-layouts/layouts-standard
- Owner: netgen-layouts
- License: mit
- Created: 2018-08-16T14:40:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-12-17T14:09:05.000Z (7 months ago)
- Last Synced: 2025-03-31T09:06:50.295Z (4 months ago)
- Topics: layouts, php, symfony
- Language: PHP
- Homepage: https://netgen.io/layouts
- Size: 739 KB
- Stars: 23
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Netgen Layouts standard blocks & layouts
This package provides a set of most used blocks and layouts for Netgen Layouts
for building rich content websites. It is a starting point when installing
Netgen Layouts.Read the [installation instructions](https://docs.netgen.io/projects/layouts/en/latest/getting_started/install_existing_project.html)
on how to install the complete Netgen Layouts to your Symfony based app.As an alternative, you can use the following repositories with Netgen Layouts
preinstalled to bootstrap your project:* [Integration with eZ Platform](https://github.com/netgen-layouts/layouts-ezplatform-site)
* [Integration with Sylius](https://github.com/netgen-layouts/layouts-sylius-site)
* [Integration with Contentful](https://github.com/netgen-layouts/layouts-contentful-site)
* [Integration with Symfony](https://github.com/netgen-layouts/layouts-symfony-site)These are kept uptodate as new versions of 3rd party products are released.
## For developers
Running tests requires that you have complete vendors installed, so run
`composer install` before running the tests.### Unit tests
Run the unit tests by calling `composer test` from the repo root:
```
$ composer test
```### PHPStan static analysis
All code is statically analysed with PHPStan. Make sure that PHPStan is green
for the entire codebase after your changes. Run the following two commands to
run PHPStan for the library/bundle code and for tests code, respectivelly:```
$ composer phpstan
``````
$ composer phpstan-tests
```### Coding standards
This repo uses PHP CS Fixer and rules defined in `.php-cs-fixer.php` file to enforce coding
standards. Please check the code for any CS violations before submitting patches:```
$ php-cs-fixer fix
```