This repository was archived by the owner on Sep 16, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +5
-27
lines changed Expand file tree Collapse file tree 5 files changed +5
-27
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
3
php :
4
- - 5.6
5
4
- 7.0
6
5
- hhvm
7
6
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ 2.1.0-RC1
5
+ ---------
6
+
4
7
* ** 2016-11-27** : [ BC BREAK] Removed all admin integration in favor of the CmfSonataAdminIntegrationBundle.
5
- * ** 2016-06-19** : [ BC BREAK] Removed ` setParent() ` /` getParent() ` from the model ` MenuNode ` .
6
8
* ** 2016-06-18** : [ BC BREAK] Removed all ` *.class ` parameters.
7
9
* ** 2016-05-25** : Use "auto" for publish workflow enabled flag. If auto and
8
10
CmfCoreBundle is not instantiated, publish workflow integration is not enabled.
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ The MenuBundle provides menus from a doctrine object manager with the help of Kn
12
12
13
13
## Requirements
14
14
15
- * Symfony 2.3 +
15
+ * Symfony 2.8 +
16
16
* See also the ` require ` section of [ composer.json] ( composer.json )
17
17
18
18
## Documentation
Original file line number Diff line number Diff line change 67
67
- cmf_sonata_admin_integration.menu.menu_admin
68
68
- cmf_sonata_admin_integration.menu.node_admin
69
69
` ` `
70
-
71
- ## Model
72
-
73
- * Removed ` setParent()`/`getParent()` from the model `MenuNode`. Use
74
- ` setParentObject()` /`getParentObject()` instead.
75
-
76
- **Before**
77
- ` ` ` php
78
- use Symfony\C mf\B undle\M enuBundle\M odel\M enuNode;
79
- // ...
80
-
81
- $node = new MenuNode('some name');
82
- $node->setParent($menuRoot);
83
- ` ` `
84
-
85
- **After**
86
- ` ` ` php
87
- use Symfony\C mf\B undle\M enuBundle\M odel\M enuNode;
88
- // ...
89
-
90
- $node = new MenuNode('some name');
91
- $node->setParentObject($menuRoot);
92
- ` ` `
Original file line number Diff line number Diff line change 14
14
"require" : {
15
15
"php" : " ^5.6|^7.0" ,
16
16
"symfony/framework-bundle" : " ^2.8|^3.0" ,
17
- "symfony-cmf/core-bundle" : " ^2.0@dev " ,
17
+ "symfony-cmf/core-bundle" : " ^2.0" ,
18
18
"doctrine/phpcr-bundle" : " ^1.1" ,
19
19
"doctrine/phpcr-odm" : " ^1.4|^2.0" ,
20
20
"knplabs/knp-menu-bundle" : " ^2.0.0" ,
You can’t perform that action at this time.
0 commit comments