Skip to content
Snippets Groups Projects
Commit d526dff0 authored by Tilman Vatteroth's avatar Tilman Vatteroth :robot:
Browse files

nochmal von vorne...

parent 1b73cbd4
No related branches found
No related tags found
No related merge requests found
Showing
with 174 additions and 0 deletions
; 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
# 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
/tmp/*
/logs/*
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>
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
tests/tmp
\ No newline at end of file
/composer.lock
/phpunit.xml
/vendor
*.diff
*.err
*.orig
*.rej
*.swo
*.swp
*.vi
*~
.DS_Store
.cache
.project
.settings
.svn
errors.err
tags
/nbproject/
/composer.lock
/vendor
/phpunit.xml
plugins/
vendor/
/vendor
/composer.lock
\ No newline at end of file
/vendor/
build
vendor
composer.lock
/.idea/
/build/
/vendor/
/composer.lock
\ No newline at end of file
vendor/
nbproject/
/*.buildpath
/*.project
/.settings
/error.log
/export/nicejson
.idea/
*.iml
/coverage
/phpunit.phar
vendor
vendor/
composer.lock
manual/
__pycache__
.php_cs.cache
# These all appear to be hidden files from various IDEs & Operating Systems.
# These probably belong in ~/.gitignore_global and not in here.
# See https://help.github.com/articles/ignoring-files
.DS_Store
.buildpath
.project
.settings
.idea
# These seem to be generated by the build tool for releasing a tagged version of this software
build
*.tgz
dist
# Don't commit composer.phar, or the .phar our build tool generates
*.phar
# this is the code coverage generated when running phpunit.
tests/log
# not positive, but this probably generated by the unit tests?
migrations
# sphinx generates HTML files for the documentation here
docs/_build
# composer installed dependencies
vendor
# this is user specific settings for running phpunit to override the defaults in phpunit.xml.dist
phpunit.xml
# sqlite test database
phinx_testing.sqlite3
vendor/
composer.lock
phpunit.xml
vendor/
composer.lock
phpunit.xml
vendor/
composer.lock
phpunit.xml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment