forumify / forumify-platform
Installs: 443
Dependents: 3
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 2
Open Issues: 7
Type:symfony-bundle
Requires
- php: >=8.2
- ext-ctype: *
- ext-dom: *
- ext-iconv: *
- doctrine/doctrine-bundle: ^2.10
- doctrine/doctrine-migrations-bundle: ^3.2
- doctrine/orm: ^2.15
- dragonmantank/cron-expression: ^3.3
- firebase/php-jwt: ^6.8
- forumify/forumify-theme: ^0.4
- guzzlehttp/guzzle: ^7.0
- league/flysystem-bundle: ^3.1
- phpdocumentor/reflection-docblock: ^5.3
- phpstan/phpdoc-parser: ^1.22
- stof/doctrine-extensions-bundle: ^v1.10
- symfony/amazon-mailer: 6.4.*
- symfony/asset: 6.4.*
- symfony/console: 6.4.*
- symfony/doctrine-messenger: 6.4.*
- symfony/dotenv: 6.4.*
- symfony/expression-language: 6.4.*
- symfony/flex: ^2
- symfony/form: 6.4.*
- symfony/framework-bundle: 6.4.*
- symfony/http-client: 6.4.*
- symfony/intl: 6.4.*
- symfony/mailer: 6.4.*
- symfony/mime: 6.4.*
- symfony/monolog-bundle: ^3.0
- symfony/process: 6.4.*
- symfony/rate-limiter: 6.4.*
- symfony/runtime: 6.4.*
- symfony/scheduler: 6.4.*
- symfony/security-bundle: 6.4.*
- symfony/serializer: 6.4.*
- symfony/stimulus-bundle: ^2.9
- symfony/string: 6.4.*
- symfony/translation: 6.4.*
- symfony/twig-bundle: 6.4.*
- symfony/ux-autocomplete: ^2.10
- symfony/ux-live-component: ^2.16
- symfony/ux-twig-component: ^2.16
- symfony/validator: 6.4.*
- symfony/web-link: 6.4.*
- symfony/webpack-encore-bundle: ^2.0
- symfony/yaml: 6.4.*
- twig/cache-extra: ^3.10
- twig/cssinliner-extra: ^3.7
- twig/extra-bundle: ^3.7
- twig/string-extra: ^3.7
- twig/twig: ^3.11.2
Requires (Dev)
- dama/doctrine-test-bundle: ^8.0
- phpstan/phpstan: ^2.0
- phpstan/phpstan-symfony: ^2.0
- phpunit/phpunit: ^9.5
- squizlabs/php_codesniffer: ^3.11
- symfony/browser-kit: 6.4.*
- symfony/css-selector: 6.4.*
- symfony/debug-bundle: 6.4.*
- symfony/phpunit-bridge: 6.4.*
- symfony/stopwatch: 6.4.*
- symfony/web-profiler-bundle: 6.4.*
- dev-master / 0.4.x-dev
- 0.4.3
- 0.4.2
- 0.4.1
- 0.4.0
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.x-dev
- 0.2.32
- 0.2.31
- 0.2.30
- 0.2.29
- 0.2.28
- 0.2.27
- 0.2.26
- 0.2.25
- 0.2.24
- 0.2.23
- 0.2.22
- 0.2.21
- 0.2.20
- 0.2.19
- 0.2.18
- 0.2.17
- 0.2.16
- 0.2.15
- 0.2.14
- 0.2.13
- 0.2.12
- 0.2.11
- 0.2.10
- 0.2.9
- 0.2.8
- 0.2.7
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.0
- dev-template-editor
This package is auto-updated.
Last update: 2024-12-17 19:40:58 UTC
README
Forumify Platform
A modern open-source forum experience
Forumify platform is a community platform that brings forums back to the modern era. Built on top of Symfony, and using a simple barebones front-end, it's easy to get into for both community owners and developers alike.
Project Overview
Forumify consists of several different open-source repositories, forumify-platform being the main one.
- Forumify Platform: The platform itself.
- Forumify Docs: Official documentation.
- Forumify Production Template: A template to easily launch forumify.
- Forumify Docker Image: A docker image that wraps the production template.
- Flex Recipes: Overrides standard Symfony bundle configurations.
Customizing the platform
Learn how to customize your own forumify here.
If you want created something you think others may benefit from, and you would like to share your customizations, you can move your customization to a plugin and publish it on packagist and promote it on the forumify marketplace.
Contributing
When you believe you've found a bug or think the platform could be expanded with a new feature. You can start by creating an issue here on GitHub.
The easiest way to contribute to forumify is by using the production template and installing the platform with composer using a symlink.
Add the following to the template's composer.json
:
"repositories": [ { "type": "path", "url": "../forumify-platform" } ]
Now when you run composer install
, the platform will be symlinked and any changes you do will immediatly be available in your project.
Code quality
The following checks are performed when you create a pull request:
- Tests: PHPUnit
- CodeStyle: checked by PHPCS, using the PSR-12 codestyle
- Static analysis: checked by PHPStan
You can avoid failing builds by running these tools locally:
- PHPCS:
./vendor/bin/phpcs
- PHPStan:
./vendor/bin/phpstan analyze