Adjust tests to new attributes
[phpmyadmin.git] / composer.json
blob589dbeb92125f20b7ac5405395b8a89d8e6091ca
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-mbstring": "*",
37         "ext-mysqli": "*",
38         "ext-xml": "*",
39         "ext-pcre": "*",
40         "ext-json": "*",
41         "phpmyadmin/sql-parser": "^4.2",
42         "phpmyadmin/motranslator": "^3.0",
43         "phpmyadmin/shapefile": "^2.0",
44         "tecnickcom/tcpdf": "^6.2",
45         "phpseclib/phpseclib": "^2.0",
46         "google/recaptcha": "^1.1"
47     },
48     "suggest": {
49         "ext-openssl": "Cookie encryption",
50         "ext-curl": "Updates checking",
51         "ext-opcache": "Better performance",
52         "ext-zlib": "For gz import and export",
53         "ext-bz2": "For bzip2 import and export",
54         "ext-zip": "For zip import and export",
55         "ext-gd2": "For image transformations",
56         "tecnickcom/tcpdf": "For PDF support"
57     },
58     "require-dev": {
59         "phpunit/phpunit": "~4.1",
60         "codacy/coverage": "dev-master",
61         "phpunit/phpunit-selenium": "~1.2",
62         "squizlabs/php_codesniffer": "2.*",
63         "phpmyadmin/coding-standard": ">=0.1.0"
64     }