Skip to content

Commit

Permalink
Fix(web-twig): Add unintentionally removed content of the composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
literat committed Jul 24, 2024
1 parent 1f51d81 commit 88fbe39
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions packages/web-twig/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
{
"name": "lmc/spirit-web-twig-bundle",
"description": "This is Symfony bundle with twig implementation of the Spirit Design System components and extends the twig implementation with an HTML-like syntax.",
"license": "MIT",
"type": "symfony-bundle",
"version": "3.3.0",
"authors": [
{
"name": "LMC, s.r.o."
}
],
"require": {
"php": "^8.1",
"ext-simplexml": "*",
"lmc/twigx-bundle": "^3.3",
"symfony/config": "^4.4 || ^5.4 || ^6.1",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.1",
"symfony/http-foundation": "^4.4 || ^5.4 || ^6.1",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.1",
"symfony/polyfill-php80": "^1.23",
"twig/twig": "^2.12.5 || ^3.0.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"lmc/coding-standard": "^4.1",
"mockery/mockery": "^1.5",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^9",
"spatie/phpunit-snapshot-assertions": "^4.2.12",
"symfony/yaml": "^4.4 || ^5.4 || ^6.1"
},
"autoload": {
"psr-4": {
"Lmc\\SpiritWebTwigBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lmc\\SpiritWebTwigBundle\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
}
},
"scripts": {
"analyze": [
"@ecs",
"@phpstan"
],
"ecs": "vendor/bin/ecs check --no-progress-bar --ansi ",
"ecs:fix": "vendor/bin/ecs check --no-progress-bar --ansi --fix",
"lint": [
"@composer validate --no-check-all --no-check-publish",
"@composer normalize --dry-run"
],
"lint:fix": [
"@composer normalize"
],
"phpstan": "vendor/bin/phpstan analyze",
"phpunit": "vendor/bin/phpunit",
"phpunit:coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit",
"phpunit:update": "vendor/bin/phpunit -d --update-snapshots",
"test": [
"@lint",
"@ecs",
"@phpunit",
"@phpstan"
]
}
}

0 comments on commit 88fbe39

Please sign in to comment.