-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.16 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
{
"name": "icanboogie/bind-render",
"type": "library",
"description": "Binds icanboogie/render to ICanBoogie",
"homepage": "https://icanboogie.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Olivier Laviale",
"email": "[email protected]",
"homepage": "https://olvlvl.com/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/ICanBoogie/bind-render/issues",
"source": "https://github.com/ICanBoogie/bind-render"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"icanboogie/icanboogie": "^5.0",
"icanboogie/render": "^0.7|^0.8"
},
"require-dev": {
"phpstan/phpstan": "^1.5",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"ICanBoogie\\Binding\\Render\\": "lib"
}
},
"autoload-dev": {
"classmap": [
"tests/Application.php"
]
},
"scripts": {
"post-autoload-dump": "ICanBoogie\\Autoconfig\\Hooks::on_autoload_dump"
},
"extra": {
"icanboogie": {
"config-path": "config",
"config-constructor": {
"render_engines": "ICanBoogie\\Binding\\Render\\RenderConfig::synthesise_engines#render"
}
}
}
}