-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (51 loc) · 1.26 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (51 loc) · 1.26 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
{
"name": "ocubom/html-bundle",
"type": "symfony-bundle",
"description": "A Symfony bundle to integrate several custom utilities for HTML manipulation",
"keywords": [
"symfony",
"symfony-bundle",
"html",
"minify",
"compress"
],
"homepage": "https://ocubom.github.io",
"license": "MIT",
"authors": [
{
"name": "Oscar Cubo Medina",
"homepage": "https://ocubom.github.io"
}
],
"autoload": {
"psr-4": {
"Ocubom\\HtmlBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ocubom\\HtmlBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.4",
"ocubom/twig-html-extension": "^1.0",
"symfony/config": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/twig-bundle": "^5.4|^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4|^3.9",
"symfony/phpunit-bridge": "^6.1"
},
"scripts": {
"fix": "./vendor/bin/php-cs-fixer fix",
"test": "./vendor/bin/simple-phpunit"
},
"config": {
"allow-plugins": {
"symfony/flex": true
},
"sort-packages": true
}
}