Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
db1c78d
Add base testing
polothy May 18, 2016
a5cbbc4
POET-13 Removed some sniffs from ruleset.xml to reduce false positives
2shediac May 18, 2016
bdc6ef4
Merge pull request #3 from mrmark/testing
2shediac May 18, 2016
ad50b87
Merge branch 'wip-POET-13'
2shediac May 18, 2016
66373a5
Improve PARAM constants sniff
polothy May 18, 2016
72c9a60
Add jQuery sniff
polothy May 18, 2016
0ae74ca
POET-62 Removed Squiz arrays from ruleset.xml
2shediac May 19, 2016
59987af
Merge pull request #6 from mrmark/paramConstants
2shediac May 31, 2016
89468e5
Merge pull request #7 from mrmark/jquery
2shediac May 31, 2016
cbb79f5
Add all DB functions to loop sniff
polothy Jun 7, 2016
f7842da
Merge pull request #8 from mrmark/moreLoopedFuncs
2shediac Jun 7, 2016
3ba21a4
Add SQL functions sniff
polothy Jun 7, 2016
c54b334
Merge pull request #9 from mrmark/sqlFunction
2shediac Jun 7, 2016
4eeeccc
Update rule set
polothy Jun 7, 2016
4b805a9
Add a .gitattributes file
polothy Jun 7, 2016
5bbd022
Merge pull request #11 from mrmark/attributes
Jun 9, 2016
0a04b59
Merge branch 'ruleset' of git://github.com/mrmark/poet-coding-standar…
Jun 9, 2016
10dddf6
POET-63 - Modified Mark's pull request to comply with comments in issue.
Jun 9, 2016
f65ff2a
POET-63 - Added changes to allow some sniffs to be warnings instead o…
Jun 9, 2016
261ae88
POET-63 Fixed up rules to match with what was proposed.
Jun 9, 2016
1b816d5
Adding docs for Sniffs
polothy May 18, 2016
82cba2e
Merge pull request #4 from mrmark/docs
2shediac Jun 10, 2016
db03f41
Bug fix for SQL warning
polothy Jun 13, 2016
af096c3
Merge pull request #12 from mrmark/sqlWarnBugFix
2shediac Jun 13, 2016
39dd1c8
Typo complext -> complex
Jun 14, 2016
007e193
Merge pull request #13 from davidscotson/patch-1
Jun 14, 2016
c492e92
POET-25 Added sniff to check for $module in version.php
2shediac Sep 1, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Path-based git attributes
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html

# Ignore all test and documentation with "export-ignore".
/POET/Docs export-ignore
/POET/Tests export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/CHANGELOG.md export-ignore
/CONTRIBUTING.md export-ignore
/phpunit.xml.dist export-ignore
/POET.md export-ignore
/README.md export-ignore
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
vendor/
/vendor/
.patches/
.idea/
nbproject/
Expand All @@ -8,5 +8,5 @@ nbproject/
.buildpath
.cache
composer.phar
composer.lock
phpunit.xml
moodle-local_codechecker
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: php

sudo: false

install:
- phpenv config-rm xdebug.ini
- composer install --prefer-source

php:
- 5.4
- 7.0

script: ./vendor/bin/phpunit
Loading