Skip to content

Commit 2b57823

Browse files
committed
Initial commit
0 parents  commit 2b57823

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Cache and logs (Symfony2)
2+
/app/cache/*
3+
/app/logs/*
4+
!app/cache/.gitkeep
5+
!app/logs/.gitkeep
6+
7+
# Cache and logs (Symfony3)
8+
/var/cache/*
9+
/var/logs/*
10+
!var/cache/.gitkeep
11+
!var/logs/.gitkeep
12+
13+
# Parameters
14+
/app/config/parameters.yml
15+
/app/config/parameters.ini
16+
17+
# Managed by Composer
18+
/app/bootstrap.php.cache
19+
/var/bootstrap.php.cache
20+
/bin/*
21+
!bin/console
22+
!bin/symfony_requirements
23+
/vendor/
24+
25+
# Assets and user uploads
26+
/web/bundles/
27+
/web/uploads/
28+
29+
# PHPUnit
30+
/app/phpunit.xml
31+
/phpunit.xml
32+
33+
# Build data
34+
/build/
35+
36+
# Composer PHAR
37+
/composer.phar

LICENSE

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

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# DoctrineCachePoolBundle
2+
Doctrine Cache Pool Bundle

0 commit comments

Comments
 (0)