Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Formatted composer.json using JQ --indent 4 #11

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 58 additions & 58 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
{
"name": "ibexa/test-core",
"license": "proprietary",
"type": "ibexa-bundle",
"keywords": [
"ibexa-dxp"
],
"require": {
"php": "^7.4 || ^8.0",
"doctrine/dbal": "^2.13.0",
"symfony/framework-bundle": "^5.4",
"symfony/mime": "^5.4",
"symfony/proxy-manager-bridge": "^5.4",
"symfony/translation": "^5.4",
"symfony/validator": "^5.4",
"symfony/yaml": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9",
"ibexa/code-style": "^1.1",
"ibexa/core": "~4.5.x-dev",
"ibexa/doctrine-schema": "~4.5.x-dev",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1.0"
},
"autoload": {
"psr-4": {
"Ibexa\\Bundle\\Test\\Core\\": "src/bundle/",
"Ibexa\\Contracts\\Test\\Core\\": "src/contracts/",
"Ibexa\\Test\\Core\\": "src/lib/"
"name": "ibexa/test-core",
"license": "proprietary",
"type": "ibexa-bundle",
"keywords": [
"ibexa-dxp"
],
"require": {
"php": "^7.4 || ^8.0",
"doctrine/dbal": "^2.13.0",
"symfony/framework-bundle": "^5.4",
"symfony/mime": "^5.4",
"symfony/proxy-manager-bridge": "^5.4",
"symfony/translation": "^5.4",
"symfony/validator": "^5.4",
"symfony/yaml": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9",
"ibexa/code-style": "^1.1",
"ibexa/core": "~4.5.x-dev",
"ibexa/doctrine-schema": "~4.5.x-dev",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1.0"
},
"autoload": {
"psr-4": {
"Ibexa\\Bundle\\Test\\Core\\": "src/bundle/",
"Ibexa\\Contracts\\Test\\Core\\": "src/contracts/",
"Ibexa\\Test\\Core\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\Test\\Core\\": "tests/bundle/",
"Ibexa\\Tests\\Integration\\Test\\Core\\": "tests/integration/",
"Ibexa\\Tests\\Test\\Core\\": "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.5.x-dev"
}
},
"config": {
"allow-plugins": false,
"sort-packages": true
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\Test\\Core\\": "tests/bundle/",
"Ibexa\\Tests\\Integration\\Test\\Core\\": "tests/integration/",
"Ibexa\\Tests\\Test\\Core\\": "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.5.x-dev"
}
},
"config": {
"allow-plugins": false,
"sort-packages": true
}
}
Loading