-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.02 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
{
"name": "icanboogie/bind-view",
"type": "library",
"description": "Binds icanboogie/view 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-view/issues",
"source": "https://github.com/ICanBoogie/bind-view"
},
"minimum-stability": "dev",
"prefer-dist": true,
"prefer-stable": true,
"require": {
"php": ">=5.6",
"icanboogie/icanboogie": "^4.0",
"icanboogie/bind-render": "^0.6",
"icanboogie/view": "^0.9"
},
"autoload": {
"psr-4": {
"ICanBoogie\\Binding\\View\\": "lib"
}
},
"autoload-dev": {
"psr-4": {
"ICanBoogie\\Binding\\View\\": "tests/lib"
},
"classmap": [
"tests/Application.php"
]
},
"scripts": {
"post-autoload-dump": "ICanBoogie\\Autoconfig\\Hooks::on_autoload_dump"
},
"extra": {
"icanboogie": {
"config-path": "config"
}
}
}