Skip to content

Commit 23b4c97

Browse files
committedDec 6, 2016
Updates CakePHP to 2.9.3
1 parent 505d262 commit 23b4c97

File tree

1,065 files changed

+33373
-13516
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,065 files changed

+33373
-13516
lines changed
 

‎.editorconfig

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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
14+
15+
[*.yml]
16+
indent_style = space
17+
indent_size = 2

‎.gitattributes

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Define the line ending behavior of the different file extensions
2+
# Set default behaviour, in case users don't have core.autocrlf set.
3+
* text=auto
4+
* text eol=lf
5+
6+
# Explicitly declare text files we want to always be normalized and converted
7+
# to native line endings on checkout.
8+
*.php text
9+
*.default text
10+
*.ctp text
11+
*.sql text
12+
*.md text
13+
*.po text
14+
*.js text
15+
*.css text
16+
*.ini text
17+
*.properties text
18+
*.txt text
19+
*.xml text
20+
*.yml text
21+
.htaccess text
22+
23+
# Declare files that will always have CRLF line endings on checkout.
24+
*.bat eol=crlf
25+
26+
# Declare files that will always have LF line endings on checkout.
27+
*.pem eol=lf
28+
29+
# Denote all files that are truly binary and should not be modified.
30+
*.png binary
31+
*.jpg binary
32+
*.gif binary
33+
*.ico binary
34+
*.mo binary
35+
*.pdf binary
36+
*.woff binary
37+
*.ttf binary
38+
*.eot binary

0 commit comments

Comments
 (0)