-
- Downloads
There was a problem fetching the pipeline summary.
Initial code
Showing
- .editorconfig 17 additions, 0 deletions.editorconfig
- .gitignore 2 additions, 0 deletions.gitignore
- .gitlab-ci.yml 16 additions, 0 deletions.gitlab-ci.yml
- README.md 3 additions, 0 deletionsREADME.md
- composer.json 39 additions, 0 deletionscomposer.json
- phpunit.xml.dist 15 additions, 0 deletionsphpunit.xml.dist
- src/Traefik.php 76 additions, 0 deletionssrc/Traefik.php
- tests/TraefikTest.php 28 additions, 0 deletionstests/TraefikTest.php
.editorconfig
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
README.md
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "lakedrops/docker-traefik", | |||
"description": "Library to prepare local Traefik Docker container which is used by e.g. Docker4Drupal.", | |||
"type": "library", | |||
"keywords": ["Drupal", "Development", "Docker"], | |||
"homepage": "https://gitlab.lakedrops.com/lakedrops/docker-traefik", | |||
"license": "GPL-2.0+", | |||
"authors": [ | |||
{ | |||
"name": "Jürgen Haas", | |||
"email": "juergen@paragon-es.de", | |||
"homepage": "https://www.paragon-es.de", | |||
"role": "Drupal Expert" | |||
}, | |||
{ | |||
"name": "Richard Papp", | |||
"email": "richard.papp@boromino.com", | |||
"homepage": "http://www.boromino.com", | |||
"role": "Drupal Expert" | |||
} | |||
], | |||
"support": { | |||
"issues": "https://gitlab.lakedrops.com/lakedrops/docker-traefik/issues", | |||
"source": "https://gitlab.lakedrops.com/lakedrops/docker-traefik/tree/master" | |||
}, | |||
"require": { | |||
"php": ">=5.4.5", | |||
"symfony/filesystem": "^3.3", | |||
"symfony/yaml": "^3.3" | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"LakeDrops\\DockerTraefik\\": "src/" | |||
} | |||
}, | |||
"require-dev": { | |||
"phpunit/phpunit": "^4.4.0" | |||
} | |||
} |
phpunit.xml.dist
0 → 100644
src/Traefik.php
0 → 100644
tests/TraefikTest.php
0 → 100644
Please register or sign in to comment