-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Creating Tag v6.0.0-RC9 at 2020-02-26 - fixes composer scripts bug, a…
…dds support for yaml config
- Loading branch information
Showing
14 changed files
with
1,909 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"}} |
Oops, something went wrong.