Commits on Source (38)
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
Felix Häberle authored
-
jurgenhaas authored
Update Handler.php - fixing typo See merge request !1
-
jurgenhaas authored
-
jurgenhaas authored
# Conflicts: # composer.json
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
Jürgen Haas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
Merging develop into main See merge request !2
-
jurgenhaas authored
-
jurgenhaas authored
#6 Add support to keep files and directories that are not contained in the repository
-
jurgenhaas authored
Merging develop into main See merge request !3
-
jurgenhaas authored
-
jurgenhaas authored
-
jurgenhaas authored
Merging develop into main [MINOR_VERSION] See merge request !4
-
jurgenhaas authored
- PHP >= 8.1 - Composer >= 2 Code cleanup
-
jurgenhaas authored
Merging develop into main [MINOR_VERSION] See merge request !5
-
jurgenhaas authored
Showing
- .ahoy.l3d.yml 6 additions, 0 deletions.ahoy.l3d.yml
- .editorconfig 0 additions, 3 deletions.editorconfig
- .gitignore 5 additions, 2 deletions.gitignore
- .gitlab-ci.yml 4 additions, 0 deletions.gitlab-ci.yml
- README.md 0 additions, 24 deletionsREADME.md
- ahoy.yml 18 additions, 1 deletionahoy.yml
- composer.json 48 additions, 49 deletionscomposer.json
- phpstan.neon 5 additions, 0 deletionsphpstan.neon
- src/CommandProvider.php 24 additions, 0 deletionssrc/CommandProvider.php
- src/Handler.php 165 additions, 37 deletionssrc/Handler.php
- src/IssueForkCommand.php 47 additions, 0 deletionssrc/IssueForkCommand.php
- src/Plugin.php 18 additions, 16 deletionssrc/Plugin.php
- src/PrepareCommand.php 44 additions, 0 deletionssrc/PrepareCommand.php
.ahoy.l3d.yml
0 → 100644
.gitlab-ci.yml
0 → 100644
README.md
deleted
100644 → 0
{ | ||
"name": "lakedrops/dorgflow", | ||
"description": "Composer Plugin for development environments", | ||
"type": "composer-plugin", | ||
"keywords": ["Development"], | ||
"homepage": "https://gitlab.lakedrops.com/composer/plugin/dorgflow", | ||
"license": "GPL-2.0-or-later", | ||
"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/composer/plugin/dorgflow/issues", | ||
"source": "https://gitlab.lakedrops.com/composer/plugin/dorgflow/tree/master" | ||
"name": "lakedrops/dorgflow", | ||
"description": "Composer Plugin for development environments", | ||
"type": "composer-plugin", | ||
"keywords": [ | ||
"Development" | ||
], | ||
"homepage": "https://gitlab.lakedrops.com/composer/plugin/dorgflow", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "Jürgen Haas", | ||
"email": "juergen.haas@lakedrops.com", | ||
"homepage": "https://www.lakedrops.com", | ||
"role": "Drupal Expert" | ||
}, | ||
"require": { | ||
"composer-plugin-api": "^1.0.0", | ||
"cypresslab/gitelephant": "~1.0", | ||
"lakedrops/composer-json-utils": "^1.1.0", | ||
"php": ">=5.6" | ||
{ | ||
"name": "Daniel Speicher", | ||
"email": "daniel.speicher@lakedrops.com", | ||
"homepage": "https://www.lakedrops.com", | ||
"role": "Drupal Expert" | ||
}, | ||
"require-dev": { | ||
"composer/composer": "^1.5.0", | ||
"phpunit/phpunit": "^4.8.0" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"autoload": { | ||
"psr-4": { | ||
"LakeDrops\\DorgFlow\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"class": "LakeDrops\\DorgFlow\\Plugin", | ||
"lakedrops": { | ||
"scripts": { | ||
"dorgflow": { | ||
"callback": "LakeDrops\\DorgFlow\\Plugin::prepare", | ||
"description": "Prepare drupal.org projects for dorgflow utility." | ||
} | ||
} | ||
} | ||
{ | ||
"name": "Richard Papp", | ||
"email": "richard.papp@lakedrops.com", | ||
"homepage": "https://www.lakedrops.com", | ||
"role": "Drupal Expert" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://gitlab.lakedrops.com/composer/plugin/dorgflow/issues", | ||
"source": "https://gitlab.lakedrops.com/composer/plugin/dorgflow/tree/main", | ||
"docs": "https://devops-tools.docs.lakedrops.com/composer/plugin/dorgflow/" | ||
}, | ||
"require": { | ||
"php": ">=8.1", | ||
"composer-plugin-api": "^2", | ||
"cypresslab/gitelephant": "^2.0|^4.0", | ||
"lakedrops/composer-json-utils": "^2.5||dev-develop" | ||
}, | ||
"require-dev": { | ||
"composer/composer": "^2", | ||
"roave/security-advisories": "dev-latest" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"LakeDrops\\DorgFlow\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"class": "LakeDrops\\DorgFlow\\Plugin" | ||
} | ||
} |
phpstan.neon
0 → 100644
src/CommandProvider.php
0 → 100644
src/IssueForkCommand.php
0 → 100644
src/PrepareCommand.php
0 → 100644