mirror of
https://github.com/jbcr/sitemap-plugin.git
synced 2026-04-26 01:48:02 +02:00
9e0cbc6890
Updates the requirements on [symfony/web-profiler-bundle](https://github.com/symfony/web-profiler-bundle) to permit the latest version. - [Release notes](https://github.com/symfony/web-profiler-bundle/releases) - [Changelog](https://github.com/symfony/web-profiler-bundle/blob/5.x/CHANGELOG.md) - [Commits](https://github.com/symfony/web-profiler-bundle/commits/v5.0.11) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
{
|
|
"name": "stefandoorn/sitemap-plugin",
|
|
"type": "sylius-plugin",
|
|
"description": "Sitemap Plugin for Sylius",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^7.4",
|
|
"sylius/sylius": "^1.6.0"
|
|
},
|
|
"require-dev": {
|
|
"lchrusciel/api-test-case": "^5.0",
|
|
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
|
|
"phpspec/phpspec": "^7.0",
|
|
"phpstan/phpstan": "^0.12.82",
|
|
"phpstan/phpstan-strict-rules": "^0.12.9",
|
|
"phpstan/phpstan-webmozart-assert": "^0.12.12",
|
|
"phpunit/phpunit": "^9",
|
|
"sylius-labs/coding-standard": "^4.0",
|
|
"symfony/browser-kit": "^5.2",
|
|
"symfony/debug-bundle": "^5.1",
|
|
"symfony/dotenv": "^4.2",
|
|
"symfony/intl": "^4.1",
|
|
"symfony/web-profiler-bundle": "^5.0",
|
|
"symfony/web-server-bundle": "^4.1"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"SitemapPlugin\\": "src/"
|
|
}
|
|
},
|
|
"prefer-stable": true,
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": ["tests/Application/Kernel.php"],
|
|
"psr-4": {
|
|
"Tests\\SitemapPlugin\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.0-dev"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"analyse": "vendor/bin/phpstan analyse -c phpstan.neon -l 3 src",
|
|
"check-style": "vendor/bin/ecs check --ansi src/ tests/ spec/",
|
|
"fix-style": "vendor/bin/ecs check --ansi src/ tests/ spec/ --fix",
|
|
"phpspec": "vendor/bin/phpspec run --ansi",
|
|
"phpunit": "vendor/bin/phpunit",
|
|
"test": [
|
|
"@phpunit",
|
|
"@phpspec"
|
|
]
|
|
}
|
|
}
|