From 4d514a95d9a60a68979b677c4c7b3985a97f438c Mon Sep 17 00:00:00 2001 From: Maciej Kobus Date: Wed, 31 May 2023 11:36:13 +0200 Subject: [PATCH] [composer] Set dependencies for 1.2.7 release. --- composer.json | 86 +++++++++++++++++++++++++-------------------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/composer.json b/composer.json index 43a7603..2379da3 100644 --- a/composer.json +++ b/composer.json @@ -1,45 +1,45 @@ { - "name": "ezsystems/ezplatform-search", - "description": "Platform Search bundle", - "type": "ezplatform-bundle", - "license": "GPL-2.0-only", - "autoload": { - "psr-4": { - "Ibexa\\Platform\\Bundle\\Search\\": "src/bundle/", - "Ibexa\\Platform\\Search\\": "src/lib/" + "name": "ezsystems/ezplatform-search", + "description": "Platform Search bundle", + "type": "ezplatform-bundle", + "license": "GPL-2.0-only", + "autoload": { + "psr-4": { + "Ibexa\\Platform\\Bundle\\Search\\": "src/bundle/", + "Ibexa\\Platform\\Search\\": "src/lib/" + } + }, + "autoload-dev": { + "psr-4": { + "Ibexa\\Platform\\Tests\\Bundle\\Search\\": "tests/bundle/", + "Ibexa\\Platform\\Tests\\Search\\": "tests/lib/" + } + }, + "require": { + "php": "^7.3 || ^8.0", + "ezsystems/ezplatform-kernel": "^1.3", + "symfony/dependency-injection": "^5.0", + "symfony/http-kernel": "^5.0", + "symfony/http-foundation": "^5.0", + "symfony/config": "^5.0", + "symfony/form": "^5.0", + "symfony/event-dispatcher": "^5.0", + "pagerfanta/pagerfanta": "^2.1" + }, + "require-dev": { + "phpunit/phpunit": "^8.5", + "friendsofphp/php-cs-fixer": "^2.16", + "ezsystems/doctrine-dbal-schema": "^1.0", + "ezsystems/ezplatform-code-style": "^0.1" + }, + "scripts": { + "fix-cs": "php-cs-fixer fix -v --show-progress=estimating", + "check-cs": "@fix-cs --dry-run", + "test": "phpunit -c phpunit.xml" + }, + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } } - }, - "autoload-dev": { - "psr-4": { - "Ibexa\\Platform\\Tests\\Bundle\\Search\\": "tests/bundle/", - "Ibexa\\Platform\\Tests\\Search\\": "tests/lib/" - } - }, - "require": { - "php": "^7.3 || ^8.0", - "ezsystems/ezplatform-kernel": "^1.3@dev", - "symfony/dependency-injection": "^5.0", - "symfony/http-kernel": "^5.0", - "symfony/http-foundation": "^5.0", - "symfony/config": "^5.0", - "symfony/form": "^5.0", - "symfony/event-dispatcher": "^5.0", - "pagerfanta/pagerfanta": "^2.1" - }, - "require-dev": { - "phpunit/phpunit": "^8.5", - "friendsofphp/php-cs-fixer": "^2.16", - "ezsystems/doctrine-dbal-schema": "^1.0@dev", - "ezsystems/ezplatform-code-style": "^0.1" - }, - "scripts": { - "fix-cs": "php-cs-fixer fix -v --show-progress=estimating", - "check-cs": "@fix-cs --dry-run", - "test": "phpunit -c phpunit.xml" - }, - "extra": { - "branch-alias": { - "dev-master": "1.2.x-dev" - } - } -} +} \ No newline at end of file