summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json59
1 files changed, 29 insertions, 30 deletions
diff --git a/composer.json b/composer.json
index 861ff74..926890b 100644
--- a/composer.json
+++ b/composer.json
@@ -1,33 +1,32 @@
{
- "name": "maennchen/zipstream-php",
- "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
- "keywords": ["zip", "stream"],
- "type": "library",
- "license": "MIT",
- "authors": [
- {
- "name": "Paul Duncan",
- "email": "pabs@pablotron.org"
- },
- {
- "name": "Jonatan Männchen",
- "email": "jonatan@maennchen.ch"
- },
- {
- "name": "Jesse Donat",
- "email": "donatj@gmail.com"
- }
- ],
- "require": {
- "php": ">= 5.6",
- "ext-mbstring": "*"
- },
- "require-dev": {
- "phpunit/phpunit": "4.3.*"
- },
- "autoload": {
- "psr-4": {
- "ZipStream\\": "src/"
- }
+ "name": "maennchen/zipstream-php",
+ "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
+ "keywords": ["zip", "stream"],
+ "type": "library",
+ "license": "MIT",
+ "authors": [{
+ "name": "Paul Duncan",
+ "email": "pabs@pablotron.org"
+ },
+ {
+ "name": "Jonatan Männchen",
+ "email": "jonatan@maennchen.ch"
+ },
+ {
+ "name": "Jesse Donat",
+ "email": "donatj@gmail.com"
}
+ ],
+ "require": {
+ "php": ">= 7.0",
+ "ext-mbstring": "*"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.3"
+ },
+ "autoload": {
+ "psr-4": {
+ "ZipStream\\": "src/"
+ }
+ }
}