Skip to content

Commit 8f4843a

Browse files
author
Stephane Litou
committed
First public beta
1 parent 30f1996 commit 8f4843a

File tree

1,555 files changed

+270377
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,555 files changed

+270377
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
; This file is for unifying the coding style for different editors and IDEs.
2+
; More information at http://editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
indent_style = tab
8+
end_of_line = lf
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.bat]
13+
end_of_line = crlf

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# User specific & automatically generated files #
2+
#################################################
3+
/app/Config/database.php
4+
/app/tmp
5+
/lib/Cake/Console/Templates/skel/tmp/
6+
/plugins
7+
/vendors
8+
/build
9+
/dist
10+
/tags
11+
12+
# OS generated files #
13+
######################
14+
.DS_Store
15+
.DS_Store?
16+
._*
17+
.Spotlight-V100
18+
.Trashes
19+
Icon?
20+
ehthumbs.db
21+
Thumbs.db

.htaccess

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<IfModule mod_rewrite.c>
2+
RewriteEngine on
3+
RewriteRule ^$ app/webroot/ [L]
4+
RewriteRule (.*) app/webroot/$1 [L]
5+
</IfModule>

.travis.yml

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
language: php
2+
3+
php:
4+
- 5.2
5+
- 5.3
6+
- 5.4
7+
- 5.5
8+
9+
env:
10+
- <