Translated using Weblate (Hungarian)
[phpmyadmin.git] / composer.json
blobc085883a24f0bc42e023d8cee10786259c7c78cf
2     "name": "phpmyadmin/phpmyadmin",
3     "type": "application",
4     "description": "MySQL web administration tool",
5     "keywords": ["phpmyadmin","mysql","web"],
6     "homepage": "https://www.phpmyadmin.net/",
7     "license": "GPL-2.0+",
8     "authors": [
9         {
10             "name": "The phpMyAdmin Team",
11             "email": "developers@phpmyadmin.net",
12             "homepage": "https://www.phpmyadmin.net/team/"
13         }
14     ],
15     "support": {
16         "forum": "https://www.phpmyadmin.net/support/",
17         "issues": "https://github.com/phpmyadmin/phpmyadmin/issues",
18         "wiki": "https://wiki.phpmyadmin.net/",
19         "docs": "https://docs.phpmyadmin.net/",
20         "source": "https://github.com/phpmyadmin/phpmyadmin"
21     },
22     "non-feature-branches": ["RELEASE_.*"],
23     "autoload": {
24         "psr-4": {
25             "PMA\\": "./"
26         }
27     },
28     "require": {
29         "php": ">=5.5.0",
30         "ext-mbstring": "*",
31         "ext-xml": "*",
32         "phpmyadmin/sql-parser": "~3.4",
33         "phpmyadmin/motranslator": "~1.0",
34         "tecnickcom/tcpdf": "~6.2",
35         "phpseclib/phpseclib": "~2.0",
36         "google/recaptcha": "~1.1"
37     },
38     "suggest": {
39         "ext-zlib": "For gz import and export",
40         "ext-bz2": "For bzip2 import and export",
41         "ext-zip": "For zip import and export",
42         "ext-gd2": "For image transformations",
43         "tecnickcom/tcpdf": "For PDF support"
44     },
45     "require-dev": {
46         "satooshi/php-coveralls": "~0.6",
47         "phpunit/phpunit": "~4.1",
48         "codacy/coverage": "dev-master",
49         "phpunit/phpunit-selenium": "~1.2",
50         "squizlabs/php_codesniffer": "2.*",
51         "phpmyadmin/coding-standard": ">=0.1.0"
52     },
53     "repositories": [
54         {
55             "type": "composer",
56             "url": "https://www.phpmyadmin.net"
57         }
58     ]