Translated using Weblate (Slovenian)
[phpmyadmin.git] / composer.json
blob6716ab98426a47a64edfb9a64c9c6aae8e487a63
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         "forum": "https://www.phpmyadmin.net/support/",
9         "issues": "https://github.com/phpmyadmin/phpmyadmin/issues",
10         "wiki": "https://wiki.phpmyadmin.net/",
11         "docs": "https://docs.phpmyadmin.net/",
12         "source": "https://github.com/phpmyadmin/phpmyadmin"
13     },
14     "license": "GPL-2.0-only",
15     "authors": [
16         {
17             "name": "The phpMyAdmin Team",
18             "email": "developers@phpmyadmin.net",
19             "homepage": "https://www.phpmyadmin.net/team/"
20         }
21     ],
22     "non-feature-branches": ["RELEASE_.*"],
23     "autoload": {
24         "psr-4": {
25             "PhpMyAdmin\\": "libraries/classes"
26         }
27     },
28     "autoload-dev": {
29         "psr-4": {
30             "PhpMyAdmin\\Tests\\": "test/classes",
31             "PhpMyAdmin\\Tests\\Selenium\\": "test/selenium/"
32         }
33     },
34     "repositories": [
35         {
36             "type": "composer",
37             "url": "https://www.phpmyadmin.net"
38         }
39     ],
40     "require": {
41         "php": "^7.1.3",
42         "ext-hash": "*",
43         "ext-iconv": "*",
44         "ext-json": "*",
45         "ext-mysqli": "*",
46         "ext-pcre": "*",
47         "ext-xml": "*",
48         "google/recaptcha": "^1.1",
49         "phpmyadmin/motranslator": "^4.0",
50         "phpmyadmin/shapefile": "^2.0",
51         "phpmyadmin/sql-parser": "^5.0",
52         "phpmyadmin/twig-i18n-extension": "^2.0 || ^3.0",
53         "phpseclib/phpseclib": "^2.0",
54         "symfony/config": "^4.2.8",
55         "symfony/dependency-injection": "^4.2.8",
56         "symfony/expression-language": "^4.2",
57         "symfony/polyfill-ctype": "^1.8",
58         "symfony/polyfill-mbstring": "^1.3",
59         "symfony/yaml": "^4.2.8",
60         "twig/twig": "^2.9 || ^3",
61         "williamdes/mariadb-mysql-kbs": "^1.2"
62     },
63     "conflict": {
64         "phpseclib/phpseclib": "2.0.8",
65         "tecnickcom/tcpdf": "<6.2",
66         "pragmarx/google2fa": ">=6.1",
67         "pragmarx/google2fa-qrcode": "<1.0.1",
68         "samyoul/u2f-php-server": "<1.1"
69     },
70     "suggest": {
71         "ext-openssl": "Cookie encryption",
72         "ext-curl": "Updates checking",
73         "ext-opcache": "Better performance",
74         "ext-zlib": "For gz import and export",
75         "ext-bz2": "For bzip2 import and export",
76         "ext-zip": "For zip import and export",
77         "ext-gd2": "For image transformations",
78         "ext-mbstring": "For best performance",
79         "tecnickcom/tcpdf": "For PDF support",
80         "pragmarx/google2fa-qrcode": "For 2FA authentication",
81         "samyoul/u2f-php-server": "For FIDO U2F authentication"
82     },
83     "require-dev": {
84         "php-webdriver/webdriver": "^1.7.1",
85         "phpmyadmin/coding-standard": "^1.0",
86         "phpstan/phpstan": "^0.11.5",
87         "phpunit/phpunit": "^7.5 || ^8.0 || ^9.0",
88         "pragmarx/google2fa-qrcode": "^1.0.1",
89         "samyoul/u2f-php-server": "^1.1",
90         "squizlabs/php_codesniffer": "^3.0",
91         "tecnickcom/tcpdf": "^6.3"
92     },
93     "extra": {
94         "branch-alias": {
95             "dev-master": "5.0.x-dev"
96         }
97     },
98     "scripts": {
99         "phpcbf": "phpcbf",
100         "phpcs": "phpcs",
101         "phpstan": "phpstan analyse",
102         "phpunit": "phpunit",
103         "test": [
104             "@phpcs",
105             "@phpstan",
106             "@phpunit"
107         ]
108     },
109     "config":{
110         "sort-packages": true
111     }