Skip to content

Commit c06491e

Browse files
committed
Initial commit
0 parents  commit c06491e

File tree

4 files changed

+146
-0
lines changed

4 files changed

+146
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
public/

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: minimal
2+
sudo: required
3+
4+
script:
5+
- docker run -v $(pwd):/repo zachomedia/composerrepo -c /repo/config.yml generate
6+
7+
deploy:
8+
provider: pages
9+
local-dir: public
10+
skip-cleanup: true
11+
github-token: $GITHUB_TOKEN # Set in the settings page of your repository, as a secure variable
12+
keep-history: true
13+
on:
14+
branch: master

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Drupal WxT - External Dependency Composer Repository
2+
3+
This project is a Composer Repository generator for external dependencies of [Drupal WxT](https://github.com/drupalwxt/wxt) which are not already in a Composer repository.
4+
5+
## Usage
6+
7+
Merge the following JSON to your project's `composer.json` file:
8+
9+
```json
10+
{
11+
"repositories": [
12+
"type": "composer",
13+
"url": "https://TBD"
14+
]
15+
}
16+
```

config.yml

+115
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
providers: true
2+
output:
3+
type: file
4+
dir: /repo/public
5+
inputs:
6+
extdep:
7+
type: static
8+
packages:
9+
w8tcha/ckeditor-codemirror:
10+
v1.16:
11+
type: drupal-library
12+
dist:
13+
type: tar
14+
url: https://github.com/w8tcha/CKEditor-CodeMirror-Plugin/archive/1.16.tar.gz
15+
source:
16+
type: git
17+
url: https://github.com/w8tcha/CKEditor-CodeMirror-Plugin.git
18+
reference: '1.16'
19+
wet-boew/wet-boew:
20+
v4.0.27:
21+
type: drupal-library
22+
dist:
23+
type: tar
24+
url: https://github.com/wet-boew/wet-boew-cdn/archive/v4.0.27.tar.gz
25+
source:
26+
type: git
27+
url: https://github.com/wet-boew/wet-boew-cdn.git
28+
reference: v4.0.27
29+
v4.0.28.1:
30+
type: drupal-library
31+
dist:
32+
type: tar
33+
url: https://github.com/wet-boew/wet-boew-cdn/archive/v4.0.28.1.tar.gz
34+
source:
35+
type: git
36+
url: https://github.com/wet-boew/wet-boew-cdn.git
37+
reference: v4.0.28.1
38+
wet-boew/theme-wet-boew:
39+
v4.0.27:
40+
type: drupal-library
41+
dist:
42+
type: tar
43+
url: https://github.com/wet-boew/themes-cdn/archive/v4.0.27-theme-wet-boew.tar.gz
44+
source:
45+
type: git
46+
url: https://github.com/wet-boew/themes-cdn.git
47+
reference: v4.0.27-theme-wet-boew
48+
v4.0.28.1:
49+
type: drupal-library
50+
dist:
51+
type: tar
52+
url: https://github.com/wet-boew/themes-cdn/archive/v4.0.28.1-theme-wet-boew.tar.gz
53+
source:
54+
type: git
55+
url: https://github.com/wet-boew/themes-cdn.git
56+
reference: v4.0.28.1-theme-wet-boew
57+
wet-boew/theme-base:
58+
v4.0.27:
59+
type: drupal-library
60+
dist:
61+
type: tar
62+
url: https://github.com/wet-boew/themes-cdn/archive/v4.0.27-theme-base.tar.gz
63+
source:
64+
type: git
65+
url: https://github.com/wet-boew/themes-cdn.git
66+
reference: v4.0.27-theme-base
67+
wet-boew/theme-gc-intranet:
68+
v4.0.27:
69+
type: drupal-library
70+
dist:
71+
type: tar
72+
url: https://github.com/wet-boew/themes-cdn/archive/v4.0.27-theme-gc-intranet.tar.gz
73+
source:
74+
type: git
75+
url: https://github.com/wet-boew/themes-cdn.git
76+
reference: v4.0.27-theme-gc-intranet
77+
wet-boew/theme-gcwu-fegc:
78+
v4.0.27:
79+
type: drupal-library
80+
dist:
81+
type: tar
82+
url: https://github.com/wet-boew/themes-cdn/archive/v4.0.27-theme-gcwu-fegc.tar.gz
83+
source:
84+
type: git
85+
url: https://github.com/wet-boew/themes-cdn.git
86+
reference: v4.0.27-theme-gcwu-fegc
87+
wet-boew/theme-gcweb:
88+
v4.0.27:
89+
type: drupal-library
90+
dist:
91+
type: tar
92+
url: https://github.com/wet-boew/themes-cdn/archive/v4.0.27-theme-gcweb.tar.gz
93+
source:
94+
type: git
95+
url: https://github.com/wet-boew/themes-cdn.git
96+
reference: v4.0.27-gcweb
97+
v4.0.28.1:
98+
type: drupal-library
99+
dist:
100+
type: tar
101+
url: https://github.com/wet-boew/themes-cdn/archive/v4.0.28.1-gcweb.tar.gz
102+
source:
103+
type: git
104+
url: https://github.com/wet-boew/themes-cdn.git
105+
reference: v4.0.28.1-gcweb
106+
wet-boew/theme-ogpl:
107+
v4.0.27:
108+
type: drupal-library
109+
dist:
110+
type: tar
111+
url: https://github.com/wet-boew/themes-cdn/archive/v4.0.27-theme-ogpl.tar.gz
112+
source:
113+
type: git
114+
url: https://github.com/wet-boew/themes-cdn.git
115+
reference: v4.0.27-theme-ogpl

0 commit comments

Comments
 (0)