-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
74 lines (74 loc) · 1.94 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "huasofoundries/phppgadmin6",
"type": "project",
"description": "Like phpmyadmin but for postgres",
"license": [
"MIT",
"GPL-2.0-OR-LATER",
"BSD-3-Clause"
],
"authors": [
{
"name": "FFFlabs",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pgsql": "*",
"ext-xml": "*",
"adodb/adodb-php": "^5.20",
"illuminate/support": "^8.34",
"slim/flash": "^0.4.0",
"slim/slim": "^3.6",
"slim/twig-view": "~2.5.1",
"symfony/polyfill-php74": "^1.20",
"symfony/yaml": "^5.1",
"twig/twig": "~3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.2",
"ergebnis/php-cs-fixer-config": "^2.0",
"filp/whoops": "^2.7",
"friendsofphp/php-cs-fixer": "^2.16",
"kint-php/kint": "~3.3",
"pestphp/pest": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpmd/phpmd": "^2.9",
"phpstan/phpstan": "^0.12.64",
"rector/rector-prefixed": "^0.9.31",
"simpletest/simpletest": "^1.2",
"staabm/annotate-pull-request-from-checkstyle": "^1.4",
"vimeo/psalm": "^4.6"
},
"extra": {
"version": "6.1.4"
},
"autoload": {
"psr-4": {
"PHPPgAdmin\\": "src"
},
"files": [
"src/lib.inc.php",
"vendor/illuminate/support/helpers.php",
"vendor/adodb/adodb-php/drivers/adodb-postgres9.inc.php"
]
},
"autoload-dev": {
"Tests\\": "tests"
},
"scripts": {
"post-install-cmd": "@clear_twig_cache",
"post-autoload-dump": "@composer normalize",
"post-create-project-cmd": "@clear_twig_cache",
"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)));\""
],
"phpstan": "phpstan analyse src ",
"test": "pest"
}
}