-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 2.25 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 2.25 KB
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": "setono/html-element-bundle",
"description": "Easily create reusable HTML elements and use them in your Symfony (with Twig) application",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Joachim Løvgaard",
"email": "joachim@loevgaard.dk"
}
],
"require": {
"php": ">=8.2",
"setono/html-element": "^1.0",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"symfony/twig-bundle": "^6.4 || ^7.4 || ^8.0",
"twig/twig": "^3.5"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.50",
"infection/infection": "^0.29.14 || ^0.30.3 || ^0.31.9 || ^0.32.7",
"jangregor/phpstan-prophecy": "^2.3",
"matthiasnoback/symfony-config-test": "^4.3 || ^5.2 || ^6.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.3 || ^5.1 || ^6.3",
"nyholm/symfony-bundle-test": "^2.0 || ^3.0",
"phpspec/prophecy-phpunit": "^2.5",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.46",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpstan/phpstan-strict-rules": "^2.0.10",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^11.5.55",
"rector/rector": "^2.4.1",
"shipmonk/composer-dependency-analyser": "^1.8.4",
"sylius-labs/coding-standard": "^4.5"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\HtmlElementBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Setono\\HtmlElementBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"analyse": "phpstan analyse",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"phpunit": "phpunit"
}
}