Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gnugat/micro-framework-bundle
[maintained] Symfony Micro Framework Bundle
https://github.com/gnugat/micro-framework-bundle
Last synced: about 1 month ago
JSON representation
[maintained] Symfony Micro Framework Bundle
- Host: GitHub
- URL: https://github.com/gnugat/micro-framework-bundle
- Owner: gnugat
- License: mit
- Created: 2015-12-16T22:32:21.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2022-02-25T11:12:16.000Z (over 2 years ago)
- Last Synced: 2024-09-30T16:22:02.886Z (about 2 months ago)
- Language: PHP
- Homepage: http://gnugat.github.io/micro-framework-bundle/
- Size: 629 KB
- Stars: 37
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Symfony Micro Framework Bundle
A replacement of the official FrameworkBundle allowing Symfony to be used as a
micro-framework which follows the "add what you need" philosophy.## Installation
First install it using [Composer](https://getcomposer.org/download):
composer require gnugat/micro-framework-bundle:^0.8
Then enable it in your application's kernel (e.g. `app/AppKernel.php`):
new Gnugat\MicroFrameworkBundle\GnugatMicroFrameworkBundle()
[More information](doc/01-installation.md)
## Features
* compatible with most third party bundles, [more information](doc/02-compatibility.md)
* micro framework spirit, including:
* "add what you need" philosohpy
* few dependencies
* small API
* small footprint for better performance
* [more information](doc/03-benchmark.md)## Want to know more?
You can see the current and past versions using one of the following:
* the `git tag` command
* the [releases page on Github](https://github.com/gnugat/micro-framework-bundle/releases)
* the file listing the [changes between versions](CHANGELOG.md)And finally some meta documentation:
* [copyright and MIT license](LICENSE)
* [versioning and branching models](VERSIONING.md)
* [contribution instructions](CONTRIBUTING.md)> **Note**: Some logic has been taken from Symfony FrameworkBundle and modified,
> all attributions go to Fabien Potencier and the contributors.