Translated using Weblate (Russian)
[phpmyadmin.git] / composer.json
blob817c316cb85c10fc38179f238f15861d7282b463
2     "name": "phpmyadmin/phpmyadmin",
3     "type": "project",
4     "description": "A web interface for MySQL and MariaDB",
5     "keywords": ["phpmyadmin","mysql","web"],
6     "homepage": "https://www.phpmyadmin.net/",
7     "support": {
8         "security": "https://www.phpmyadmin.net/security/",
9         "forum": "https://www.phpmyadmin.net/support/",
10         "issues": "https://github.com/phpmyadmin/phpmyadmin/issues",
11         "wiki": "https://wiki.phpmyadmin.net/",
12         "docs": "https://docs.phpmyadmin.net/",
13         "source": "https://github.com/phpmyadmin/phpmyadmin"
14     },
15     "license": "GPL-2.0-only",
16     "authors": [
17         {
18             "name": "The phpMyAdmin Team",
19             "email": "developers@phpmyadmin.net",
20             "homepage": "https://www.phpmyadmin.net/team/"
21         }
22     ],
23     "non-feature-branches": ["RELEASE_.*"],
24     "autoload": {
25         "psr-4": {
26             "PhpMyAdmin\\": "src"
27         },
28         "exclude-from-classmap": [
29             "/tests/",
30             "/vendor/tecnickcom/tcpdf/tcpdf_barcodes_*.php",
31             "/vendor/tecnickcom/tcpdf/tcpdf_import.php",
32             "/vendor/tecnickcom/tcpdf/tcpdf_parser.php",
33             "/vendor/tecnickcom/tcpdf/include/tcpdf_filters.php",
34             "/vendor/tecnickcom/tcpdf/include/barcodes"
35         ]
36     },
37     "autoload-dev": {
38         "psr-4": {
39             "PhpMyAdmin\\Tests\\": "tests/unit",
40             "PhpMyAdmin\\Tests\\Selenium\\": "tests/end-to-end/"
41         }
42     },
43     "repositories": [
44         {
45             "type": "composer",
46             "url": "https://www.phpmyadmin.net"
47         }
48     ],
49     "require": {
50         "php": "^8.1.2",
51         "ext-hash": "*",
52         "ext-iconv": "*",
53         "ext-json": "*",
54         "ext-mysqli": "*",
55         "ext-openssl": "*",
56         "ext-pcre": "*",
57         "ext-sodium": "*",
58         "ext-xml": "*",
59         "composer/ca-bundle": "^1.2",
60         "fig/http-message-util": "^1.1",
61         "google/recaptcha": "^1.3",
62         "laminas/laminas-httphandlerrunner": "^2.6",
63         "nikic/fast-route": "^1.3",
64         "phpmyadmin/motranslator": "^6.0-dev",
65         "phpmyadmin/shapefile": "^4.0-dev",
66         "phpmyadmin/sql-parser": "^6.0-dev",
67         "psr/container": "^2.0",
68         "psr/http-factory": "^1.0",
69         "psr/http-message": "^1.1",
70         "psr/http-server-handler": "^1.0",
71         "psr/http-server-middleware": "^1.0",
72         "slim/psr7": "^1.6.1",
73         "symfony/config": "^6.2",
74         "symfony/dependency-injection": "^6.2",
75         "symfony/expression-language": "^6.2",
76         "symfony/polyfill-ctype": "^1.24",
77         "symfony/polyfill-mbstring": "^1.24",
78         "symfony/polyfill-php82": "^1.29",
79         "twig/twig": "^3.9",
80         "webmozart/assert": "^1.10",
81         "williamdes/mariadb-mysql-kbs": "^1.2"
82     },
83     "conflict": {
84         "bacon/bacon-qr-code": "<2.0",
85         "pragmarx/google2fa-qrcode": "<2.1",
86         "tecnickcom/tcpdf": "<6.4.4"
87     },
88     "suggest": {
89         "ext-curl": "Updates checking",
90         "ext-opcache": "Better performance",
91         "ext-zlib": "For gz import and export",
92         "ext-bz2": "For bzip2 import and export",
93         "ext-zip": "For zip import and export",
94         "ext-gd2": "For image transformations",
95         "ext-mbstring": "For best performance",
96         "tecnickcom/tcpdf": "For PDF support",
97         "pragmarx/google2fa-qrcode": "^2.1 or ^3.0 - For 2FA authentication",
98         "bacon/bacon-qr-code": "^2.0 - For 2FA authentication",
99         "code-lts/u2f-php-server": "For FIDO U2F authentication",
100         "web-auth/webauthn-lib": "For better WebAuthn/FIDO2 authentication support"
101     },
102     "require-dev": {
103         "bacon/bacon-qr-code": "^2.0",
104         "code-lts/u2f-php-server": "^1.2",
105         "guzzlehttp/psr7": "^2.5",
106         "httpsoft/http-message": "^1.1",
107         "laminas/laminas-diactoros": "^3.0",
108         "nyholm/psr7": "^1.8",
109         "php-webdriver/webdriver": "^1.14",
110         "phpmyadmin/coding-standard": "^4.0",
111         "phpstan/extension-installer": "^1.3",
112         "phpstan/phpstan": "^1.10.15",
113         "phpstan/phpstan-phpunit": "^1.3",
114         "phpstan/phpstan-strict-rules": "^1.5",
115         "phpstan/phpstan-webmozart-assert": "^1.2",
116         "phpunit/phpunit": "^10.4",
117         "pragmarx/google2fa-qrcode": "^3.0",
118         "psalm/plugin-phpunit": "^0.18.4",
119         "roave/security-advisories": "dev-latest",
120         "symfony/console": "^6.2",
121         "tecnickcom/tcpdf": "^6.4.4",
122         "vimeo/psalm": "^5.14",
123         "web-auth/webauthn-lib": "^3.3.12"
124     },
125     "extra": {
126         "branch-alias": {
127             "dev-master": "6.0.x-dev"
128         }
129     },
130     "scripts": {
131         "phpcbf": "@php phpcbf",
132         "phpcs": "@php phpcs",
133         "phpstan": "@php phpstan analyse",
134         "psalm": "@php psalm --no-diff",
135         "phpunit": "@php phpunit --color=always",
136         "test": [
137             "@phpcs",
138             "@phpstan",
139             "@psalm",
140             "@phpunit"
141         ],
142         "update:baselines": [
143             "@php phpstan analyse --generate-baseline",
144             "@php psalm --set-baseline=psalm-baseline.xml"
145         ],
146         "twig-lint": "@php bin/console lint:twig --ansi --show-deprecations"
147     },
148     "config":{
149         "sort-packages": true,
150         "discard-changes": true,
151         "allow-plugins": {
152             "dealerdirect/phpcodesniffer-composer-installer": true,
153             "phpstan/extension-installer": true,
154             "composer/package-versions-deprecated": true
155         },
156         "platform": {
157             "php": "8.1.99"
158         }
159     }