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