Skip to content

Commit 00a222a

Browse files
committed
Initial commit
0 parents  commit 00a222a

File tree

5 files changed

+151
-0
lines changed

5 files changed

+151
-0
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
composer.phar
2+
/vendor/
3+
4+
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
5+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
6+
# composer.lock

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Till Wehowski
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# vendor-dependencies-bundle-template
2+
Template for grouped denendency bundles

composer.json

+120
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
{
2+
"name": "{$vendor}/{$name}",
3+
"type": "webfan-${package.webfantizing}-${type.oid}",
4+
"description": "${package.description}",
5+
"keywords": [ "${project.identifier}", "webfan-module" , "webfan-${package.webfantizing}", "${package.type}"],
6+
"homepage": "https://registry.frdl.de/codebase/${package.vendor}/${package.name}",
7+
"license": "${package.license.key}",
8+
"minimum-stability":"dev",
9+
"installer-types": [
10+
"oidplus-plugin",
11+
"library",
12+
"project",
13+
"package",
14+
"webfan-page",
15+
"webfan-workspace",
16+
"gh-pages",
17+
"git-repository",
18+
"git",
19+
"node-package",
20+
"webfan-library",
21+
"webfan-feature",
22+
"webfan-site",
23+
"webfan-plugin",
24+
"webfan-stage",
25+
"webfan-module",
26+
"webfan-deployment",
27+
"webfan-config",
28+
"webfan-environment",
29+
"webfan-setup",
30+
"webfan-runtime",
31+
"webfan-server",
32+
"webfan-assets",
33+
"webfan-asset",
34+
"webfan-widget",
35+
"widget",
36+
"chunk",
37+
"package-chunk",
38+
"webfan-shared",
39+
"webfan-docroot",
40+
"webfan-container",
41+
"webfan-vhost",
42+
"webfan-webspace",
43+
"webfan-api",
44+
"webfantized",
45+
"*-webfantized",
46+
"webfantized-*",
47+
"*-webfantized-*",
48+
"webfan-app",
49+
"webfan-sdk"
50+
],
51+
"installer-paths": {
52+
"~/git/{$vendor}.{$name}/": ["{$vendor}/{$name}"],
53+
"~/git/{$vendor}.{$name}/": ["type:git-repository"],
54+
"~/git/{$vendor}.{$name}/": ["type:git"],
55+
"~/git/{$vendor}.{$name}/": ["type:project"],
56+
"~/git/{$vendor}.{$name}/": ["type:package"],
57+
"~/httpdocs/{$name}/public/": ["type:webfan-docroot"],
58+
"~/config/{$type}/{$name}/": ["type:*-config"],
59+
"~/config/{$type}/webfantized/{$name}/": ["type:webfan-config"],
60+
"~/{$name}": ["type:webfan-vhost"],
61+
"~": ["type:webfan-webspace"],
62+
"~/git/{$vendor}.{$name}/": ["type:webfan-webspace"],
63+
"vendor/{$vendor}/{$name}/": ["type:library"],
64+
"plugins/{$vendor}/{$name}/": ["type:oidplus-plugin"],
65+
"~/.frdl/WORKSPACE/{$name}/": ["type:workspace"],
66+
"{$name}": ["type:chunk"]
67+
}
68+
},
69+
"repositories": [
70+
{
71+
"type": "composer",
72+
"url": "https:\/\/packages.frdl.de"
73+
},
74+
{
75+
"type": "composer",
76+
"url": "https:\/\/packages.frdl.de"
77+
},
78+
{
79+
"type": "composer",
80+
"url": "https:\/\/packages.frdl.de"
81+
}
82+
],
83+
"config": {
84+
"platform-check": false
85+
},
86+
"authors": [
87+
{
88+
"name": "Contributors",
89+
"homepage": "http://api.webfan.de/${container.identifier}/${project.identifier}/${package.vendor}/${package.name}/meta/contributors"
90+
},
91+
{
92+
"name": "${package.authors.0.name}",
93+
"email": "${package.authors.0.emai}",
94+
"homepage": "${package.authors.0.homepage}",
95+
"role": "${package.authors.0.role}"
96+
}
97+
],
98+
"support": {
99+
"docs": "https://api.webfan.de/apps/packages/${package.vendor}/${package.name}/doc",
100+
"issues": "https://api.webfan.de/apps/packages/${package.vendor}/${package.name}/issues",
101+
"source": "https://api.webfan.de/${container.identifier}/${project.identifier}/modules/${package.vendor}/${package.name}/composer"
102+
},
103+
"require": {
104+
"php": ">=7.2 | >= 8.0",
105+
"oomphinc/composer-installers-extender":"*",
106+
"${package.vendor}/${package.name}-metapackage":"*"
107+
},
108+
"suggest": {
109+
110+
},
111+
"autoload": {
112+
"classmap" : [
113+
"src-dev/",
114+
"shared/"
115+
],
116+
"psr4" : {
117+
"${package.app.php.namespace}\\" : "src-psr4/"
118+
}
119+
}
120+
}

0 commit comments

Comments
 (0)