-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.46 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.46 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
{
"name" : "mouf/html.renderer.twig-extensions",
"description" : "This package contains a set of Twig extensions and utility class to ease the use of Twig templates in Mouf.",
"keywords" : [
"html",
"tohtml",
"interface",
"render"
],
"homepage" : "http://mouf-php.com/packages/mouf/html.renderer.twig-extensions",
"type" : "mouf-library",
"license" : "MIT",
"authors" : [{
"name" : "David Négrier",
"email" : "d.negrier@thecodingmachine.com",
"homepage" : "http://mouf-php.com"
}
],
"require" : {
"php" : "^8.0",
"mouf/html.htmlelement" : "~2.0",
"twig/twig" : "^2",
"psr/container" : "^1",
"mouf/utils.value.value-interface": "^1",
"thecodingmachine/funky": "^1"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"thecodingmachine/phpstan-strict-rules": "^1.0",
"maglnet/composer-require-checker": "^4.2",
"mnapoli/simplex": "^0.5",
"thecodingmachine/twig-universal-module": "^1",
"squizlabs/php_codesniffer": "^3.3.1"
},
"autoload" : {
"psr-0" : {
"Mouf\\Html\\Renderer\\Twig" : "src/"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse src -c phpstan.neon --level=5 --no-progress -vvv"
},
"extra" : {
"mouf" : {
"doc" : [{
"title" : "Twig extensions",
"url" : "doc/twig_extensions.md"
}
],
"logo" : "logo.png"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"mindplay/composer-locator": true
}
}
}