Skip to content

Commit

Permalink
Merged branch '4.5' into 4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
alongosz committed Mar 20, 2024
2 parents 3443b7c + 616a5f9 commit a3b94f5
Showing 1 changed file with 63 additions and 61 deletions.
124 changes: 63 additions & 61 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,64 +1,66 @@
{
"name": "ibexa/test-rest",
"license": "proprietary",
"type": "ibexa-bundle",
"keywords": [
"ibexa-dxp"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-dom": "*",
"ibexa/test-core": "~4.6.x-dev",
"justinrainbow/json-schema": "^5.2",
"symfony/browser-kit": "^5.4",
"symfony/mime": "^5.4",
"symfony/proxy-manager-bridge": "^5.4",
"symfony/translation": "^5.4",
"symfony/validator": "^5.4"
},
"require-dev": {
"ibexa/code-style": "^1.1",
"ibexa/core": "~4.6.x-dev",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Ibexa\\Bundle\\Test\\Rest\\": "src/bundle/",
"Ibexa\\Contracts\\Test\\Rest\\": "src/contracts/",
"Ibexa\\Test\\Rest\\": "src/lib/"
"name": "ibexa/test-rest",
"description": "Internal Ibexa DXP REST testing framework",
"license": "proprietary",
"type": "ibexa-bundle",
"keywords": [
"ibexa-dxp"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-dom": "*",
"ibexa/test-core": "~4.6.x-dev",
"justinrainbow/json-schema": "^5.2",
"symfony/browser-kit": "^5.4",
"symfony/mime": "^5.4",
"symfony/proxy-manager-bridge": "^5.4",
"symfony/translation": "^5.4",
"symfony/validator": "^5.4"
},
"require-dev": {
"ibexa/code-style": "^1.1",
"ibexa/core": "~4.6.x-dev",
"ibexa/doctrine-schema": "~4.6.x-dev",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Ibexa\\Bundle\\Test\\Rest\\": "src/bundle/",
"Ibexa\\Contracts\\Test\\Rest\\": "src/contracts/",
"Ibexa\\Test\\Rest\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\Test\\Rest\\": "tests/bundle/",
"Ibexa\\Tests\\Integration\\Test\\Rest\\": "tests/integration/",
"Ibexa\\Tests\\Test\\Rest\\": "tests/lib/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml.dist",
"phpstan": "phpstan analyse -c phpstan.neon"
},
"scripts-descriptions": {
"fix-cs": "Automatically fixes code style in all files",
"check-cs": "Run code style checker for all files",
"test": "Run automatic tests",
"phpstan": "Run static code analysis"
},
"extra": {
"branch-alias": {
"dev-main": "4.6.x-dev"
}
},
"config": {
"allow-plugins": false,
"sort-packages": true
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\Test\\Rest\\": "tests/bundle/",
"Ibexa\\Tests\\Integration\\Test\\Rest\\": "tests/integration/",
"Ibexa\\Tests\\Test\\Rest\\": "tests/lib/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml.dist",
"phpstan": "phpstan analyse -c phpstan.neon"
},
"scripts-descriptions": {
"fix-cs": "Automatically fixes code style in all files",
"check-cs": "Run code style checker for all files",
"test": "Run automatic tests",
"phpstan": "Run static code analysis"
},
"extra": {
"branch-alias": {
"dev-main": "4.6.x-dev"
}
},
"config": {
"allow-plugins": false,
"sort-packages": true
}
}

0 comments on commit a3b94f5

Please sign in to comment.