-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.73 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
{
"name": "lmc/twigx-bundle",
"type": "symfony-bundle",
"description": "This is Symfony bundle which extends the twig implementation by an JSX like syntax.",
"license": "MIT",
"repositories": [],
"authors": [
{
"name": "LMC, s.r.o."
}
],
"autoload": {
"psr-4": {
"Lmc\\TwigXBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lmc\\TwigXBundle\\": "tests/"
}
},
"require": {
"php": "^8.1",
"symfony/config": " ^5.4 || ^6.4 || ^7.2",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.2",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.2",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.2",
"twig/twig": "^3.0.0",
"ext-simplexml": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.5 ||^11.5",
"mockery/mockery": "^1.5",
"doctrine/cache": "^1.10",
"lmc/coding-standard": "^4.1",
"symfony/yaml": "^5.4 || ^6.4 || ^7.2",
"phpstan/phpstan": "^2",
"phpstan/phpstan-mockery": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-symfony": "^2.0",
"spatie/phpunit-snapshot-assertions": "^5.1"
},
"scripts": {
"ecs": "vendor/bin/ecs check --no-progress-bar --ansi src/ tests/",
"ecs:fix": "vendor/bin/ecs check --no-progress-bar --ansi --fix src/ tests/",
"phpunit": "vendor/bin/phpunit --no-coverage",
"phpunit:coverage": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyze --memory-limit 4G",
"tests": [
"@ecs",
"@phpunit",
"@phpstan"
],
"analyze": [
"@ecs",
"@phpstan"
]
},
"version": "3.3.0",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}