https://github.com/symfony/symfony-docs
The Symfony documentation
https://github.com/symfony/symfony-docs
docs hacktoberfest php symfony
Last synced: 6 months ago
JSON representation
The Symfony documentation
- Host: GitHub
- URL: https://github.com/symfony/symfony-docs
- Owner: symfony
- License: other
- Created: 2010-02-17T08:43:51.000Z (over 15 years ago)
- Default Branch: 7.3
- Last Pushed: 2025-05-12T07:16:22.000Z (6 months ago)
- Last Synced: 2025-05-12T07:24:03.382Z (6 months ago)
- Topics: docs, hacktoberfest, php, symfony
- Language: PHP
- Homepage: https://symfony.com/doc
- Size: 88.3 MB
- Stars: 2,249
- Watchers: 99
- Forks: 5,219
- Open Issues: 203
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
- Security: security.rst
Awesome Lists containing this project
README
The official Symfony Documentation
Online version
|
Components
|
Screencasts
Contributing
------------
We love contributors! For more information on how you can contribute, please read
the [Symfony Docs Contributing Guide](https://symfony.com/doc/current/contributing/documentation/overview.html).
> [!IMPORTANT]
> Use `6.4` branch as the base of your pull requests, unless you are documenting a
> feature that was introduced *after* Symfony 6.4 (e.g. in Symfony 7.2).
Build Documentation Locally
---------------------------
This is not needed for contributing, but it's useful if you would like to debug some
issue in the docs or if you want to read Symfony Documentation offline.
```bash
$ git clone git@github.com:symfony/symfony-docs.git
$ cd symfony-docs/
$ cd _build/
$ composer install
$ php build.php
```
After generating docs, serve them with the internal PHP server:
```bash
$ php -S localhost:8000 -t output/
```
Browse `http://localhost:8000` to read the docs.