Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

PHP 7.2 + QA Tools + Docs - follow up #5, #8, #9 #13

Merged
merged 35 commits into from
Apr 25, 2018
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
43270d3
src_dir is deprecated
Koopzington Jun 21, 2016
68f75d4
Remove fast_finish flag
Koopzington Sep 15, 2016
e001f4b
Remove CS dependencies and add zend-coding-standard to require-dev
Koopzington Nov 13, 2016
1d22c0c
add/update phpcs.xml
Koopzington Nov 13, 2016
2cea3c5
Use composer scripts in .travis.yml
Koopzington Nov 13, 2016
36e31d4
Replace mentions of php-cs-fixer with phpcs
Koopzington Nov 13, 2016
83e4dd3
CS fixes
Koopzington Nov 13, 2016
bf5e2e3
Replace mentions of phpcs and phpcbf with composer scripts
Koopzington Nov 15, 2016
ef0f943
Merge pull request #5 from Koopzington/coveralls-yml-fix
michalbundyra Nov 3, 2017
d49a4ca
Merge pull request #8 from Koopzington/remove-fast-finish
michalbundyra Nov 3, 2017
fa3e85e
Merge pull request #9 from Koopzington/new-coding-standard
michalbundyra Nov 3, 2017
ca67d3b
Renamed documentation directory: doc -> docs
michalbundyra Nov 3, 2017
cb59c96
Moved all support files into docs directory and added SUPPORT.md
michalbundyra Nov 3, 2017
935ab68
Updated .gitattributes
michalbundyra Nov 3, 2017
753450d
Updated .gitignore - removed all IDE/OS specific files/dirs
michalbundyra Nov 3, 2017
6c93930
Updated Travis CI configuration
michalbundyra Nov 3, 2017
fdb7919
Updated year in LICENSE.md and mkdocs.yml
michalbundyra Nov 3, 2017
2ffc139
Updated PHPUnit configuration
michalbundyra Nov 3, 2017
63c9003
Updated composer skeleton and dependencies + added composer.lock
michalbundyra Nov 3, 2017
c2881f4
Updated PHPUnit - ^5.7 || ^6.4
michalbundyra Nov 3, 2017
76a22f1
Updated link to the documentation - docs.zendframework.com
michalbundyra Nov 3, 2017
23631d4
Added zend-code to legacy dependencies as the latest version requires…
michalbundyra Nov 3, 2017
e06694a
Updated .gitattributes and .gitignore - natsort
michalbundyra Nov 22, 2017
61a35d0
Removed empty line in LICENSE.md
michalbundyra Nov 22, 2017
a6de06b
Updated coveralls badge in README.md
michalbundyra Nov 22, 2017
1d716d9
Removed ehite characters at the end of the line in the docs
michalbundyra Nov 22, 2017
5baa03f
Updated copyright range year in mkdocs.yml to match LICENSE.md
michalbundyra Nov 22, 2017
122c6d5
Added PR and ISSUE github templates
michalbundyra Nov 22, 2017
8f6fb1d
Updated to php-coveralls/php-coveralls
michalbundyra Dec 14, 2017
475baf7
Added travis_retry on uploading coverage to coveralls in Travis CI co…
michalbundyra Apr 12, 2018
9326720
Updated copyright year range in LICENSE.md and mkdocs.yml
michalbundyra Apr 12, 2018
25e80cb
Updated link to https in mkdocs.yml
michalbundyra Apr 12, 2018
ce5f879
Updated branch aliases in composer.json
michalbundyra Apr 12, 2018
e6753f1
Allow PHPUnit 7
michalbundyra Apr 12, 2018
0c1192f
Use "chat" instead of "slack"
michalbundyra Apr 13, 2018
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
CS fixes
  • Loading branch information
Koopzington committed Nov 13, 2016
commit 83e4dd3986998ddb82c9bfcbd84a477897e76338
2 changes: 1 addition & 1 deletion test/CacheTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function setUp()
$this->cacheFile = tempnam(sys_get_temp_dir(), 'zjs');

// if (!is_writeable(__DIR__)) {
if (!is_writeable($this->cacheFile)) {
if (! is_writeable($this->cacheFile)) {
$this->markTestSkipped('Cannot write test caches due to permissions');
}

Expand Down