From 98f2b2801da862f21c42e27698a61d97c3c9a6c2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 7 Jan 2021 08:47:41 +0100 Subject: duplicate v3 --- composer.json | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..cd9dd0c --- /dev/null +++ b/composer.json @@ -0,0 +1,65 @@ +{ + "name": "laminas/laminas-code", + "description": "Extensions to the PHP Reflection API, static code scanning, and code generation", + "license": "BSD-3-Clause", + "keywords": [ + "laminas", + "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 + }, + "extra": { + }, + "require": { + "php": "^7.3 || ~8.0.0", + "laminas/laminas-eventmanager": "^3.3", + "laminas/laminas-zendframework-bridge": "^1.1" + }, + "require-dev": { + "ext-phar": "*", + "doctrine/annotations": "^1.10.4", + "laminas/laminas-coding-standard": "^1.0.0", + "laminas/laminas-stdlib": "^3.3.0", + "phpunit/phpunit": "^9.4.2" + }, + "conflict": { + "phpspec/prophecy": "<1.9.0" + }, + "suggest": { + "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features", + "laminas/laminas-stdlib": "Laminas\\Stdlib component" + }, + "autoload": { + "psr-4": { + "Laminas\\Code\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "LaminasTest\\Code\\": "test/" + } + }, + "scripts": { + "check": [ + "@cs-check", + "@test" + ], + "cs-check": "phpcs", + "cs-fix": "phpcbf", + "test": "phpunit --colors=always", + "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + }, + "replace": { + "zendframework/zend-code": "^3.4.1" + } +} -- cgit