Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDron Rathore <dron.rathore@gmail.com>2012-12-12 11:49:18 +0400
committerDron Rathore <dron.rathore@gmail.com>2012-12-12 11:49:18 +0400
commit28b683b2e9e0d721f5bf394dfc59fefd8a1aab1b (patch)
tree8f7a723ddb70a6f033692475dee8d067d10a90ed /composer.json
parentd505e3c70e9e6cf9ace52cff22f429a0f0ae10f8 (diff)
mysql version should also be included in "require"
mysql versions are also varying in functionality, so we should tell that too.
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/composer.json b/composer.json
index e699491831..13e0955a38 100644
--- a/composer.json
+++ b/composer.json
@@ -19,6 +19,7 @@
"source": "https://github.com/phpmyadmin/phpmyadmin"
},
"require": {
- "php": ">=5.2.0"
+ "php": ">=5.2.0",
+ "mysql": ">=5.0"
}
}