Skip to content

Commit ff383c4

Browse files
author
Florian Eckerstorfer
committed
Merge branch 'release/v1.0.1'
* release/v1.0.1: Updated README
2 parents 723b5a0 + 6637c0e commit ff383c4

2 files changed

Lines changed: 44 additions & 6 deletions

File tree

LICENSE

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2012 Florian Eckerstorfer
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 35 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,41 @@ About
88

99
BraincraftedBootstrapBundle is [Bootstrap, from Twitter](http://twitter.github.com/bootstrap/) encapsulated in a [Symfony2](http://symfony.com) bundle.
1010

11-
**Fair Warning**: This is in a very early development stage. Currently there are only the required stylesheets, JavaScripts and icons included and I started to include the form styles as Twig templates.
11+
Installation
12+
------------
1213

13-
Todo
14-
----
14+
First you need to add BraincraftedBootstrapBundle to `composer.json`:
1515

16-
- Form styles
17-
- Navigation/Menu (using [KnpMenuBundle](https://github.com/KnpLabs/KnpMenuBundle))
16+
{
17+
"require": {
18+
"braincrafted/bootstrap-bundle": "dev-master"
19+
}
20+
}
1821

19-
(This list of todos may grow as I think of more.)
22+
and you have to add the bundle to your `AppKernel.php`:
23+
24+
// app/AppKernel.php
25+
...
26+
class AppKernel extends Kernel
27+
{
28+
...
29+
public function registerBundles()
30+
{
31+
$bundles = array(
32+
...
33+
new Braincrafted\BootstrapBundle\BraincraftedBootstrapBundle()
34+
);
35+
...
36+
37+
return $bundles;
38+
}
39+
...
40+
}
41+
42+
Then you should check out the [documentation](http://bootstrap.braincrafted.com) to find out how you can use BraincraftedBootstrapBundle in your Symfony2 project.
43+
44+
License
45+
-------
46+
47+
- The bundle is licensed under the [MIT License](http://opensource.org/licenses/MIT)
48+
- The CSS and Javascript from the Twitter Bootstrap are licensed under the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0)

0 commit comments

Comments
 (0)