File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Fuzzyma \Contao \DatabaseCommandsBundle \ContaoManager ;
4
+
5
+ use Contao \CoreBundle \ContaoCoreBundle ;
6
+ use Contao \ManagerPlugin \Bundle \BundlePluginInterface ;
7
+ use Contao \ManagerPlugin \Bundle \Parser \ParserInterface ;
8
+ use Contao \ManagerPlugin \Bundle \Config \BundleConfig ;
9
+ use Fuzzyma \Contao \DatabaseCommandsBundle \ContaoDatabaseCommandsBundle ;
10
+
11
+ class Plugin implements BundlePluginInterface
12
+ {
13
+ /**
14
+ * {@inheritdoc}
15
+ */
16
+ public function getBundles (ParserInterface $ parser )
17
+ {
18
+ return [
19
+ BundleConfig::create (ContaoDatabaseCommandsBundle::class)
20
+ ->setLoadAfter ([ContaoCoreBundle::class]),
21
+ ];
22
+ }
23
+ }
Original file line number Diff line number Diff line change 19
19
}
20
20
],
21
21
"require-dev" : {
22
+ "contao/manager-plugin" : " ^2.0" ,
22
23
"phpunit/phpunit" : " ^5.4"
24
+ },
25
+ "conflict" : {
26
+ "contao/manager-plugin" : " <2.0 || >=3.0"
27
+ },
28
+ "extra" : {
29
+ "contao-manager-plugin" : " Fuzzyma\\ Contao\\ DatabaseCommandsBundle\\ ContaoManager\\ Plugin"
23
30
}
24
31
}
You can’t perform that action at this time.
0 commit comments