You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,20 @@ This bundle is based on [Henri Bergius](https://github.com/bergie) library [phpf
4
4
The intention for creating this bundle is an easier inclusion into e.g. symfony environments with the need for flow programming.
5
5
I had to rewrite part of the initial Network class to make use of a component registry to easily manage components via DIC. Also all component services should be defined as "public: false" to not clutter the DIC.
6
6
7
+
Installation
8
+
----
9
+
You can either just add via:
10
+
```bash
11
+
$ composer.phar require asm/phpflo-bundle
12
+
```
13
+
**Attention:** This need minimum-stability: dev set on rootlevel
14
+
Otherwise you can first add phpflo and then the bundle.
15
+
```bash
16
+
$ composer.phar require phpflo/phpflo dev-master
17
+
$ composer.phar require asm/phpflo-bundle
18
+
```
19
+
This will first add phpflo with dev stability and the the bundle. This is due to composer's handling of stabilities for indirect dependencies.
0 commit comments