-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix(web-twig): Add unintentionally removed content of the composer.json
- Loading branch information
Showing
1 changed file
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} | ||
} |