Skip to content

Commit

Permalink
Creating Tag v6.0.0-RC9 at 2020-02-26 - fixes composer scripts bug, a…
Browse files Browse the repository at this point in the history
…dds support for yaml config
  • Loading branch information
ffflabs committed Feb 26, 2020
1 parent 1bc0ba7 commit 1656e5d
Show file tree
Hide file tree
Showing 14 changed files with 1,909 additions and 273 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ composer_update:
update_version:
@echo "Current version is " ${VERSION} ;\
echo "Next version is " $(v) ;\
sed -i s/"version": "$(VERSION)"/"version": "$(v)"/g composer.json
sed -i 's/"version": "$(VERSION)"/"version": "$(v)"/g' composer.json
@${MAKE} composer_update --no-print-directory


Expand Down
69 changes: 1 addition & 68 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,68 +1 @@
{
"name": "huasofoundries/phppgadmin6",
"description": "Like phpmyadmin but for postgres",
"type": "project",
"license": [
"MIT",
"GPL-2.0-OR-LATER",
"BSD-3-Clause"
],
"authors": [
{
"name": "FFFlabs",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"PHPPgAdmin\\": "src/classes",
"PHPPgAdmin\\Controller\\": "src/controllers",
"PHPPgAdmin\\Middleware\\": "src/middleware",
"PHPPgAdmin\\Database\\": "src/database",
"PHPPgAdmin\\XHtml\\": "src/xhtml",
"PHPPgAdmin\\Decorators\\": "src/decorators",
"PHPPgAdmin\\Traits\\": "src/traits",
"PHPPgAdmin\\Database\\Traits\\": "src/database/databasetraits",
"PHPPgAdmin\\Help\\": "src/help",
"PHPPgAdmin\\Translations\\": "src/translations"
}
},
"require": {
"php": ">=7.1",
"ext-pgsql": "*",
"slim/slim": "^3.6",
"slim/twig-view": "~2.5.1",
"twig/twig": "~1.42.4",
"adodb/adodb-php": "^5.20",
"slim/flash": "^0.4.0",
"symfony/yaml": "^5.0"
},
"require-dev": {
"kint-php/kint": "~3.3",
"codeception/codeception": "*",
"simpletest/simpletest": "^1.1",
"codeception/module-asserts": "^1.1",
"filp/whoops": "^2.7",
"symfony/var-dumper": "^5.0",
"vimeo/psalm": "^3.9",
"ergebnis/composer-normalize": "^2.2",
"friendsofphp/php-cs-fixer": "^2.16",
"ergebnis/php-cs-fixer-config": "^2.0"
},
"extra": {
"version": "6.0.0-RC9",
"current_tags": {
"master": "6.0.0-RC9",
"develop": "6.0.0-RC9"
}
},
"scripts": {
"clear_twig_cache": [
"make fix_permissions",
"php -r \"array_map( 'unlink', array_filter((array) glob('temp/twigcache/**/*.php', GLOB_BRACE)));\"",
"php -r \"array_map( 'rmdir', array_filter((array) glob('temp/twigcache/*', GLOB_BRACE)));\""
],
"post-install-cmd": "@clear_twig_cache",
"post-create-project-cmd": "@clear_twig_cache"
}
}
{"name":"huasofoundries\/phppgadmin6","description":"Like phpmyadmin but for postgres","type":"project","license":["MIT","GPL-2.0-OR-LATER","BSD-3-Clause"],"authors":[{"name":"FFFlabs","email":"[email protected]"}],"autoload":{"psr-4":{"PHPPgAdmin\\":"src\/classes","PHPPgAdmin\\Controller\\":"src\/controllers","PHPPgAdmin\\Middleware\\":"src\/middleware","PHPPgAdmin\\Database\\":"src\/database","PHPPgAdmin\\XHtml\\":"src\/xhtml","PHPPgAdmin\\Decorators\\":"src\/decorators","PHPPgAdmin\\Traits\\":"src\/traits","PHPPgAdmin\\Database\\Traits\\":"src\/database\/databasetraits","PHPPgAdmin\\Help\\":"src\/help","PHPPgAdmin\\Translations\\":"src\/translations"}},"require":{"php":">=7.1","ext-pgsql":"*","slim\/slim":"^3.6","slim\/twig-view":"~2.5.1","twig\/twig":"~1.42.4","adodb\/adodb-php":"^5.20","slim\/flash":"^0.4.0","symfony\/yaml":"^5.0"},"require-dev":{"kint-php\/kint":"~3.3","codeception\/codeception":"*","simpletest\/simpletest":"^1.1","codeception\/module-asserts":"^1.1","filp\/whoops":"^2.7","symfony\/var-dumper":"^5.0","vimeo\/psalm":"^3.9","ergebnis\/composer-normalize":"^2.2","friendsofphp\/php-cs-fixer":"^2.16","ergebnis\/php-cs-fixer-config":"^2.0"},"extra":{"version":"v6.0.0-RC8-20-g1bc0ba72","current_tags":{"master":"v6.0.0-RC8-15-gf1bae70b","develop":"v6.0.0-RC8-20-g1bc0ba72"}},"scripts":{"clear_twig_cache":["make fix_permissions","php -r \"array_map( 'unlink', array_filter((array) glob('temp\/twigcache\/**\/*.php', GLOB_BRACE)));\"","php -r \"array_map( 'rmdir', array_filter((array) glob('temp\/twigcache\/*', GLOB_BRACE)));\""],"post-install-cmd":"@clear_twig_cache","post-create-project-cmd":"@clear_twig_cache"}}
Loading

0 comments on commit 1656e5d

Please sign in to comment.