diff options
author | Remi Collet <remi@remirepo.net> | 2020-01-07 15:16:05 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-01-07 15:16:05 +0100 |
commit | c68b4d124edb1e55000a1773a5f2ab62ac7b8447 (patch) | |
tree | a87d9fbd6f71d5ce01d9fad8d0e08fab5ee7fe31 /composer.json | |
parent | 78c64b58cf388c7e9b6663a2f6ca2d8fa39d67e8 (diff) |
switch to Laminas
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 68 |
1 files changed, 36 insertions, 32 deletions
diff --git a/composer.json b/composer.json index 0312cc8..4554b55 100644 --- a/composer.json +++ b/composer.json @@ -1,56 +1,57 @@ { - "name": "zendframework/zend-serializer", + "name": "laminas/laminas-serializer", "description": "Serialize and deserialize PHP structures to a variety of representations", "license": "BSD-3-Clause", "keywords": [ - "zf", - "zendframework", + "laminas", "serializer" ], + "homepage": "https://laminas.dev", "support": { - "docs": "https://docs.zendframework.com/zend-serializer/", - "issues": "https://github.com/zendframework/zend-serializer/issues", - "source": "https://github.com/zendframework/zend-serializer", - "rss": "https://github.com/zendframework/zend-serializer/releases.atom", - "chat": "https://zendframework-slack.herokuapp.com", - "forum": "https://discourse.zendframework.com/c/questions/components" + "docs": "https://docs.laminas.dev/laminas-serializer/", + "issues": "https://github.com/laminas/laminas-serializer/issues", + "source": "https://github.com/laminas/laminas-serializer", + "rss": "https://github.com/laminas/laminas-serializer/releases.atom", + "chat": "https://laminas.dev/chat", + "forum": "https://discourse.laminas.dev" + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "2.9.x-dev", + "dev-develop": "2.10.x-dev" + }, + "laminas": { + "component": "Laminas\\Serializer", + "config-provider": "Laminas\\Serializer\\ConfigProvider" + } }, "require": { "php": "^5.6 || ^7.0", - "zendframework/zend-json": "^2.5 || ^3.0", - "zendframework/zend-stdlib": "^2.7 || ^3.0" + "laminas/laminas-json": "^2.5 || ^3.0", + "laminas/laminas-stdlib": "^2.7 || ^3.0", + "laminas/laminas-zendframework-bridge": "^1.0" }, "require-dev": { - "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.16", - "zendframework/zend-coding-standard": "~1.0.0", - "zendframework/zend-math": "^2.6 || ^3.0", - "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3" + "laminas/laminas-coding-standard": "~1.0.0", + "laminas/laminas-math": "^2.6 || ^3.0", + "laminas/laminas-servicemanager": "^2.7.5 || ^3.0.3", + "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.16" }, "suggest": { - "zendframework/zend-math": "(^2.6 || ^3.0) To support Python Pickle serialization", - "zendframework/zend-servicemanager": "(^2.7.5 || ^3.0.3) To support plugin manager support" + "laminas/laminas-math": "(^2.6 || ^3.0) To support Python Pickle serialization", + "laminas/laminas-servicemanager": "(^2.7.5 || ^3.0.3) To support plugin manager support" }, "autoload": { "psr-4": { - "Zend\\Serializer\\": "src/" + "Laminas\\Serializer\\": "src/" } }, "autoload-dev": { "psr-4": { - "ZendTest\\Serializer\\": "test/" - } - }, - "config": { - "sort-packages": true - }, - "extra": { - "branch-alias": { - "dev-master": "2.9.x-dev", - "dev-develop": "2.10.x-dev" - }, - "zf": { - "component": "Zend\\Serializer", - "config-provider": "Zend\\Serializer\\ConfigProvider" + "LaminasTest\\Serializer\\": "test/" } }, "scripts": { @@ -62,5 +63,8 @@ "cs-fix": "phpcbf", "test": "phpunit --colors=always", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + }, + "replace": { + "zendframework/zend-serializer": "self.version" } } |