monsieurbiz / sylius-blog-plugin
Installs: 738
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 2
Open Issues: 2
Type:sylius-plugin
Requires
- php: ^8.1
- monsieurbiz/sylius-media-manager-plugin: ^1.1
- monsieurbiz/sylius-rich-editor-plugin: ^2.8
- sylius/sylius: ^1.12.0 || ^1.13.0
Requires (Dev)
- behat/behat: ^3.6.1
- behat/mink-selenium2-driver: ^1.4
- dmore/behat-chrome-extension: ^1.3
- dmore/chrome-mink-driver: ^2.7
- friends-of-behat/mink: ^1.8
- friends-of-behat/mink-browserkit-driver: ^1.4
- friends-of-behat/mink-debug-extension: ^2.0.0
- friends-of-behat/mink-extension: ^2.4
- friends-of-behat/page-object-extension: ^0.3
- friends-of-behat/suite-settings-extension: ^1.0
- friends-of-behat/symfony-extension: ^2.1
- friends-of-behat/variadic-extension: ^1.3
- friendsofphp/php-cs-fixer: ^3.56
- phpmd/phpmd: ^2.15
- phpspec/phpspec: ^7.2
- phpstan/extension-installer: ^1.0
- phpstan/phpstan: ^1.8.1
- phpstan/phpstan-doctrine: 1.3.40
- phpstan/phpstan-strict-rules: ^1.3.0
- phpstan/phpstan-webmozart-assert: ^1.2.0
- phpunit/phpunit: ^9.5
- polishsymfonycommunity/symfony-mocker-container: ^1.0
- sylius-labs/coding-standard: ^4.2
- symfony/browser-kit: ^5.4 || ^6.0
- symfony/debug-bundle: ^5.4 || ^6.0
- symfony/dotenv: ^5.4 || ^6.0
- symfony/flex: ^2.2.2
- symfony/intl: ^5.4 || ^6.0
- symfony/web-profiler-bundle: ^5.4 || ^6.0
- vimeo/psalm: 5.12.0
README
This plugin adds a blog to your Sylius project. It allows you to create blog articles, tags and authors.
Compatibility
Installation
If you want to use our recipes, you can add recipes endpoints to your composer.json by running this command:
composer config --no-plugins --json extra.symfony.endpoint '["https://api.github.com/repos/monsieurbiz/symfony-recipes/contents/index.json?ref=flex/master","flex://defaults"]'
Install the plugin via composer:
composer require monsieurbiz/sylius-blog-plugin:dev-master
Change your config/bundles.php
file to add this line for the plugin declaration:
<?php return [ //.. MonsieurBiz\SyliusBlogPlugin\MonsieurBizSyliusBlogPlugin::class => ['all' => true], ];
Add the plugin's routing by creating a new file in config/routes/monsieurbiz_sylius_blog_plugin.yaml
with the following content:
imports: resource: '@MonsieurBizSyliusBlogPlugin/Resources/config/config.yaml'
Add the plugin's routing by creating a new file in config/routes/monsieurbiz_sylius_blog_plugin.yaml
with the following content:
monsieurbiz_blog_plugin: resource: '@MonsieurBizSyliusBlogPlugin/Resources/config/routes.yaml'
And finally, update your database:
bin/console doctrine:migrations:migrate
License
This plugin is under the MIT license. Please see the LICENSE file for more information._