-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.07 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
{
"name": "cake17/cakephp-bootstrap",
"type": "cakephp-plugin",
"description": "To easily use Bootstrap Twitter 3.x in CakePHP projects",
"keywords": [
"cakephp",
"bootstrap",
"twitter",
"helpers",
"form",
"html"
],
"homepage": "https://github.com/cake17/cakephp-bootstrap",
"license": "MIT",
"authors": [
{
"name": "cake17",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/cake17/cakephp-bootstrap/issues",
"source": "https://github.com/cake17/cakephp-bootstrap",
"wiki": "http://getbootstrap.com"
},
"require": {
"friendsofcake/bootstrap-ui": "dev-master"
},
"require-dev": {
"cakephp/cakephp": "~3.0",
"phpunit/phpunit": "~4.8",
"cakephp/cakephp-codesniffer": "2.*"
},
"autoload": {
"psr-4": {
"Bootstrap\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bootstrap\\": "tests"
}
}
}