Skip to content

Commit c51f989

Browse files
committed
first push
0 parents  commit c51f989

File tree

3 files changed

+59
-0
lines changed

3 files changed

+59
-0
lines changed

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# OS
2+
.DS_Store
3+
Thumbs.db
4+
5+
# IDEs
6+
.buildpath
7+
.project
8+
.settings/
9+
.build/
10+
.external*/
11+
.idea/
12+
nbproject/
13+
14+
# composer related
15+
vendor/
16+
17+
# build
18+
build/

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Starter bundle
2+
==============
3+
4+
Starter MetaModels bundle with first filter and attributes

composer.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "metamodels/bundle_start",
3+
"description": "Starter MetaModels bundle",
4+
"keywords": [
5+
"contao",
6+
"metamodels",
7+
"bundle",
8+
"metapackage"
9+
],
10+
"type": "metapackage",
11+
"homepage": "http://now.metamodel.me/",
12+
"license": "LGPL-3.0-or-later",
13+
"authors": [
14+
{
15+
"name": "Christian Schiffler",
16+
"email": "[email protected]",
17+
"homepage": "http://www.cyberspectrum.de",
18+
"role": "Developer"
19+
},
20+
{
21+
"name": "Stefan Heimes",
22+
"email": "[email protected]",
23+
"role": "Developer"
24+
}
25+
],
26+
"support": {
27+
"email": "[email protected]",
28+
"issues": "https://github.com/MetaModels/bundle_all/issues",
29+
"wiki": "http://de.contaowiki.org/MetaModels",
30+
"irc": "irc://irc.freenode.org/contao.mm",
31+
"source": "https://github.com/MetaModels/bundle_all"
32+
},
33+
"require": {
34+
"metamodels/bundle_nontranslated": "^2.0.1",
35+
"metamodels/bundle_filter": "~2.0"
36+
}
37+
}

0 commit comments

Comments
 (0)