Skip to content

Commit 5c2f553

Browse files
committed
update the README file
1 parent df49b62 commit 5c2f553

File tree

3 files changed

+24
-11
lines changed

3 files changed

+24
-11
lines changed

README.md

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,34 @@
1-
DriebitHttpCacheBundle
2-
======================
3-
[![Build Status](https://travis-ci.org/driebit/DriebitHttpCacheBundle.png?branch=master)](https://travis-ci.org/driebit/DriebitHttpCacheBundle)
4-
[![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/driebit/DriebitHttpCacheBundle/badges/quality-score.png?s=19e67940317eb4591d64bb3b116cbb30d7bb18b9)](https://scrutinizer-ci.com/g/driebit/DriebitHttpCacheBundle/)
5-
[![Code Coverage](https://scrutinizer-ci.com/g/driebit/DriebitHttpCacheBundle/badges/coverage.png?s=7d94f5c66673b8e3a61a27e294e4f1a975bcded3)](https://scrutinizer-ci.com/g/driebit/DriebitHttpCacheBundle/)
6-
[![Latest Stable Version](https://poser.pugx.org/driebit/http-cache-bundle/v/stable.png)](https://packagist.org/packages/driebit/http-cache-bundle)
1+
FOSHttpCacheBundle
2+
==================
3+
4+
This is a work in progress to unite the LiipCacheControlBundle and
5+
DriebitHttpCacheBundle into one good bundle. We
6+
[hope to publish this as a FOS bundle](https://github.com/FriendsOfSymfony/friendsofsymfony.github.com/issues/42)
77

88
Introduction
99
------------
1010

11-
This bundle offers an easy way to manage your Symfony2 application’s invalidation (purge) requests and send these
12-
requests to your HTTP cache.
11+
This bundle offers tools to improve HTTP caching with Symfony2. It provides
12+
global configuration options to set caching headers based on the path,
13+
controller and other aspects of the request. It provides means to actively
14+
invalidate caching proxies and some additional tools that can help when working
15+
with a caching proxy.
1316

1417
Features
1518
--------
1619

20+
Caching Headers
21+
...............
22+
23+
Cache Invalidation
24+
..................
1725
* Set up an invalidation scheme without writing PHP code.
1826
* Send invalidation requests with minimal impact on performance.
1927
* Easily implement your own HTTP cache client.
2028

29+
Tools
30+
.....
31+
2132
Documentation
2233
-------------
2334

Resources/doc/index.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
TODO: this should be a TOC and the rest split up and merged with liipREADME.md
2+
13
Installation
24
------------
35

4-
This library is available on [Packagist](https://packagist.org/packages/driebit/http-cache-bundle). You can install it
6+
This library is available on [Packagist](https://packagist.org/packages/friendsofsymfony/http-cache-bundle). You can install it
57
using Composer:
68
```bash
7-
$ composer require driebit/http-cache-bundle:@stable
9+
$ composer require friendsofsymfony/http-cache-bundle:@stable
810
```
911

1012
Then add the bundle to your application:
@@ -16,7 +18,7 @@ public function registerBundles()
1618
{
1719
$bundles = array(
1820
...
19-
new Driebit\HttpCacheBundle\DriebitHttpCacheBundle(),
21+
new FOS\HttpCacheBundle\FOSHttpCacheBundle(),
2022
...
2123
);
2224
}
File renamed without changes.

0 commit comments

Comments
 (0)