diff options
author | Remi Collet <remi@remirepo.net> | 2020-01-07 09:48:18 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-01-07 09:48:18 +0100 |
commit | c5ca909ec24da3fd2c2e4102dad92f33656f3a3a (patch) | |
tree | d9fbb1176779a038bf0e4e64d652228a086eb756 /composer.json | |
parent | cf35b329c6de17866d29ad67ba3b241735b562d9 (diff) |
switch to Laminas
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 56 |
1 files changed, 30 insertions, 26 deletions
diff --git a/composer.json b/composer.json index 461d909..28ca659 100644 --- a/composer.json +++ b/composer.json @@ -1,49 +1,50 @@ { - "name": "zendframework/zend-json", + "name": "laminas/laminas-json", "description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP", "license": "BSD-3-Clause", "keywords": [ - "zf", - "zendframework", + "laminas", "json" ], + "homepage": "https://laminas.dev", "support": { - "docs": "https://docs.zendframework.com/zend-json/", - "issues": "https://github.com/zendframework/zend-json/issues", - "source": "https://github.com/zendframework/zend-json", - "rss": "https://github.com/zendframework/zend-json/releases.atom", - "chat": "https://zendframework-slack.herokuapp.com", - "forum": "https://discourse.zendframework.com/c/questions/components" + "docs": "https://docs.laminas.dev/laminas-json/", + "issues": "https://github.com/laminas/laminas-json/issues", + "source": "https://github.com/laminas/laminas-json", + "rss": "https://github.com/laminas/laminas-json/releases.atom", + "chat": "https://laminas.dev/chat", + "forum": "https://discourse.laminas.dev" + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev", + "dev-develop": "3.2.x-dev" + } }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0", + "laminas/laminas-zendframework-bridge": "^1.0" }, "require-dev": { - "phpunit/phpunit": "^5.7.23 || ^6.4.3", - "zendframework/zend-coding-standard": "~1.0.0", - "zendframework/zend-stdlib": "^2.7.7 || ^3.1" + "laminas/laminas-coding-standard": "~1.0.0", + "laminas/laminas-stdlib": "^2.7.7 || ^3.1", + "phpunit/phpunit": "^5.7.23 || ^6.4.3" }, "suggest": { - "zendframework/zend-json-server": "For implementing JSON-RPC servers", - "zendframework/zend-xml2json": "For converting XML documents to JSON" + "laminas/laminas-json-server": "For implementing JSON-RPC servers", + "laminas/laminas-xml2json": "For converting XML documents to JSON" }, "autoload": { "psr-4": { - "Zend\\Json\\": "src/" + "Laminas\\Json\\": "src/" } }, "autoload-dev": { "psr-4": { - "ZendTest\\Json\\": "test/" - } - }, - "config": { - "sort-packages": true - }, - "extra": { - "branch-alias": { - "dev-master": "3.1.x-dev", - "dev-develop": "3.2.x-dev" + "LaminasTest\\Json\\": "test/" } }, "scripts": { @@ -55,5 +56,8 @@ "cs-fix": "phpcbf", "test": "phpunit --colors=always", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + }, + "replace": { + "zendframework/zend-json": "self.version" } } |