Translated using Weblate (Slovenian)
[phpmyadmin.git] / composer.json
blob5144b07cbd7cd402d17577c7d70c5ce7f69ca62d
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": "^2.0",
34         "phpmyadmin/shapefile": "~0.1 || ~1.0",
35         "tecnickcom/tcpdf": "~6.2",
36         "phpseclib/phpseclib": "~2.0",
37         "google/recaptcha": "~1.1"
38     },
39     "suggest": {
40         "ext-zlib": "For gz import and export",
41         "ext-bz2": "For bzip2 import and export",
42         "ext-zip": "For zip import and export",
43         "ext-gd2": "For image transformations",
44         "tecnickcom/tcpdf": "For PDF support"
45     },
46     "require-dev": {
47         "satooshi/php-coveralls": "~0.6",
48         "phpunit/phpunit": "~4.1",
49         "codacy/coverage": "dev-master",
50         "phpunit/phpunit-selenium": "~1.2",
51         "squizlabs/php_codesniffer": "2.*",
52         "phpmyadmin/coding-standard": ">=0.1.0"
53     },
54     "repositories": [
55         {
56             "type": "composer",
57             "url": "https://www.phpmyadmin.net"
58         }
59     ]