Translated using Weblate (German)
[phpmyadmin.git] / composer.json
blob21a03fdc65fcfccfe3eeb97afd27a6cbd417e0f8
2     "name": "phpmyadmin/phpmyadmin",
3     "type": "project",
4     "description": "MySQL web administration tool",
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",
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             "PhpMyAdmin\\Setup\\": "setup/lib"
27         }
28     },
29     "autoload-dev": {
30         "psr-4": {
31             "PhpMyAdmin\\Tests\\": "test/classes"
32         }
33     },
34     "repositories": [
35         {
36             "type": "composer",
37             "url": "https://www.phpmyadmin.net"
38         }
39     ],
40     "require": {
41         "php": ">=5.5.0",
42         "ext-mysqli": "*",
43         "ext-xml": "*",
44         "ext-pcre": "*",
45         "ext-json": "*",
46         "phpmyadmin/sql-parser": "^4.1.9",
47         "phpmyadmin/motranslator": "^3.0",
48         "phpmyadmin/shapefile": "^2.0",
49         "phpseclib/phpseclib": "^2.0",
50         "google/recaptcha": "^1.1",
51         "psr/container": "^1.0",
52         "twig/twig": "^1.32",
53         "twig/extensions": "~1.4.1",
54         "symfony/expression-language": "^3.2",
55         "symfony/polyfill-mbstring": "^1.3"
56     },
57     "conflict": {
58         "tecnickcom/tcpdf": "<6.2"
59     },
60     "suggest": {
61         "ext-openssl": "Cookie encryption",
62         "ext-curl": "Updates checking",
63         "ext-opcache": "Better performance",
64         "ext-zlib": "For gz import and export",
65         "ext-bz2": "For bzip2 import and export",
66         "ext-zip": "For zip import and export",
67         "ext-gd2": "For image transformations",
68         "ext-mbstring": "For best performance",
69         "tecnickcom/tcpdf": "For PDF support"
70     },
71     "require-dev": {
72         "phpunit/phpunit": "~4.1",
73         "codacy/coverage": "dev-master",
74         "phpunit/phpunit-selenium": "~1.2",
75         "squizlabs/php_codesniffer": "2.*",
76         "tecnickcom/tcpdf": "^6.2",
77         "phpmyadmin/coding-standard": ">=0.1.0"
78     },
79     "extra": {
80         "branch-alias": {
81             "dev-master": "4.8.x-dev"
82         }
83     }