diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 70619017537657aa481f267c561f7711e904515e..0000000000000000000000000000000000000000 --- a/.editorconfig +++ /dev/null @@ -1,18 +0,0 @@ -; This file is for unifying the coding style for different editors and IDEs. -; More information at http://editorconfig.org - -root = true - -[*] -indent_style = space -indent_size = 4 -end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true - -[*.bat] -end_of_line = crlf - -[*.yml] -indent_style = space -indent_size = 2 diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 926a808fc7cbf99dd6eb81d9bb29258a9d4355be..0000000000000000000000000000000000000000 --- a/.gitattributes +++ /dev/null @@ -1,36 +0,0 @@ -# Define the line ending behavior of the different file extensions -# Set default behaviour, in case users don't have core.autocrlf set. -* text=auto -* text eol=lf - -# Explicitly declare text files we want to always be normalized and converted -# to native line endings on checkout. -*.php text -*.default text -*.ctp text -*.sql text -*.md text -*.po text -*.js text -*.css text -*.ini text -*.properties text -*.txt text -*.xml text -*.yml text -.htaccess text - -# Declare files that will always have CRLF line endings on checkout. -*.bat eol=crlf - -# Declare files that will always have LF line endings on checkout. -*.pem eol=lf - -# Denote all files that are truly binary and should not be modified. -*.png binary -*.jpg binary -*.gif binary -*.ico binary -*.mo binary -*.pdf binary -*.phar binary diff --git a/.htaccess b/.htaccess deleted file mode 100644 index 8cfc1eafd8ff84ce91711d91d80d0805adcce80d..0000000000000000000000000000000000000000 --- a/.htaccess +++ /dev/null @@ -1,5 +0,0 @@ -<IfModule mod_rewrite.c> - RewriteEngine on - RewriteRule ^$ webroot/ [L] - RewriteRule (.*) webroot/$1 [L] -</IfModule> diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b9b337904a097ed2f108a283f051248570482bc8..0000000000000000000000000000000000000000 --- a/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -language: php - -sudo: false - -php: - - 5.4 - - 5.5 - - 5.6 - -before_script: - - sh -c "composer require 'cakephp/cakephp-codesniffer:dev-master'" - - phpenv rehash - -script: - - sh -c "vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests ./config ./webroot" - -notifications: - email: false