-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.19 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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": "4.1.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"
]
}
}