1 | 6 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,29 @@ |
1 |
+{ |
|
2 |
+ "name": "esalesmedia/contao-elk", |
|
3 |
+ "description": "eSales Media Layout Kit for Contao open source CMS", |
|
4 |
+ "homepage": "https://www.esales-media.de", |
|
5 |
+ "license": "proprietary", |
|
6 |
+ "authors": [ |
|
7 |
+ { |
|
8 |
+ "name": "Benjamin Roth", |
|
9 |
+ "homepage": "https://www.esales-media.de" |
|
10 |
+ } |
|
11 |
+ ], |
|
12 |
+ "keywords": [ |
|
13 |
+ "contao", |
|
14 |
+ "layout", |
|
15 |
+ "ui", |
|
16 |
+ "kit", |
|
17 |
+ "helper" |
|
18 |
+ ], |
|
19 |
+ "type": "contao-bundle", |
|
20 |
+ "require": { |
|
21 |
+ "php": ">=7.0", |
|
22 |
+ "contao/core-bundle": "^4.4.0" |
|
23 |
+ }, |
|
24 |
+ "autoload": { |
|
25 |
+ "psr-4": { |
|
26 |
+ "eSalesMedia\\eSalesLayoutKitBundle\\": "src" |
|
27 |
+ } |
|
28 |
+ } |
|
29 |
+} |
|
0 | 30 |
\ No newline at end of file |
1 | 31 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,14 @@ |
1 |
+<?php |
|
2 |
+ |
|
3 |
+declare(strict_types = 1); |
|
4 |
+ |
|
5 |
+namespace eSalesMedia\eSalesLayoutKitBundle; |
|
6 |
+ |
|
7 |
+use Symfony\Component\HttpKernel\Bundle\Bundle; |
|
8 |
+ |
|
9 |
+/** |
|
10 |
+ * @author Benjamin Roth |
|
11 |
+ */ |
|
12 |
+class eSalesLayoutKitBundle extends Bundle |
|
13 |
+{ |
|
14 |
+} |
|
0 | 15 |
\ No newline at end of file |