Welcome to mirror list, hosted at ThFree Co, Russian Federation.

composer.json - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd35dd7a57406073f950c675452d49eac9c427c4 (plain)
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
{
    "name": "huasofoundries/phppgadmin6",
    "version": "6.0.0-RC8",
    "description": "Like phpmyadmin but for postgres",
    "type": "project",
    "license": [
        "MIT",
        "GPL-2.0-OR-LATER",
        "BSD-3-Clause"
    ],
    "authors": [
        {
            "name": "FFFlabs",
            "email": "amenadiel@gmail.com"
        }
    ],
    "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"
    },
    "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"
    },
    "scripts": {
        "fix_temp_permissions": [
            "php -r \"chmod( __DIR__ . '/temp', 0777);\"",
            "php -r \"chmod( __DIR__ . '/temp/logs', 0777);\"",
            "php -r \"chmod( __DIR__ . '/temp/sessions', 0777);\"",
            "php -r \"chmod( __DIR__ . '/temp/twigcache', 0777);\""
        ],
        "clear": "@fix_temp_permissions",
        "post-install-cmd": "@clear_temp_folder",
        "post-create-project-cmd": "@clear_temp_folder"
    }
}