From e15cfd49a23f0e79342cfabfcb722da5f766fe80 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 18 Jun 2021 08:38:12 +0200 Subject: update to 4.4.0 drop dependency on laminas-eventmanager --- composer.json | 38 +++++++++++++++++--------------------- 1 file changed, 17 insertions(+), 21 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index fc6a8f6..f44c879 100644 --- a/composer.json +++ b/composer.json @@ -1,27 +1,18 @@ { "name": "laminas/laminas-code", "description": "Extensions to the PHP Reflection API, static code scanning, and code generation", - "license": "BSD-3-Clause", "keywords": [ "laminas", "laminasframework", "code" ], "homepage": "https://laminas.dev", - "support": { - "docs": "https://docs.laminas.dev/laminas-code/", - "issues": "https://github.com/laminas/laminas-code/issues", - "source": "https://github.com/laminas/laminas-code", - "rss": "https://github.com/laminas/laminas-code/releases.atom", - "chat": "https://laminas.dev/chat", - "forum": "https://discourse.laminas.dev" - }, - "config": { - "sort-packages": true - }, + "license": "BSD-3-Clause", "require": { - "php": "^7.4 || ~8.0.0", - "laminas/laminas-eventmanager": "^3.3" + "php": "^7.4 || ~8.0.0" + }, + "conflict": { + "phpspec/prophecy": "<1.9.0" }, "require-dev": { "ext-phar": "*", @@ -32,14 +23,14 @@ "psalm/plugin-phpunit": "^0.14.0", "vimeo/psalm": "^4.3.1" }, - "conflict": { - "phpspec/prophecy": "<1.9.0" - }, "suggest": { "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features", "laminas/laminas-stdlib": "Laminas\\Stdlib component", "laminas/laminas-zendframework-bridge": "A bridge with Zend Framework" }, + "config": { + "sort-packages": true + }, "autoload": { "psr-4": { "Laminas\\Code\\": "src/" @@ -57,11 +48,16 @@ ], "cs-check": "phpcs", "cs-fix": "phpcbf", + "static-analysis": "psalm --shepherd --stats", "test": "phpunit --colors=always", - "test-coverage": "phpunit --colors=always --coverage-clover clover.xml", - "static-analysis": "psalm --shepherd --stats" + "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" }, - "replace": { - "zendframework/zend-code": "self.version" + "support": { + "issues": "https://github.com/laminas/laminas-code/issues", + "forum": "https://discourse.laminas.dev", + "chat": "https://laminas.dev/chat", + "source": "https://github.com/laminas/laminas-code", + "docs": "https://docs.laminas.dev/laminas-code/", + "rss": "https://github.com/laminas/laminas-code/releases.atom" } } -- cgit