Skip to content

Commit 3f35b43

Browse files
author
Filip Marek
committed
fix problems with TravisCi
Added composer.lock to ignored files, Travis could not install php_cs because it was missing in lock file. Removed require for mysqli extension, Travis will fail because it hasn't this extension installed.
1 parent d736f21 commit 3f35b43

File tree

3 files changed

+5
-1411
lines changed

3 files changed

+5
-1411
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
.idea
33

44
# ignore Composer downloads
5-
/vendor/*
5+
/vendor/*
6+
7+
# ignore Composer.lock
8+
composer.lock

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
],
1313
"require": {
1414
"php": ">=5.6.0",
15-
"squizlabs/php_codesniffer": "^3.0@dev",
16-
"ext-mysqli": "*"
15+
"squizlabs/php_codesniffer": "^3.0@dev"
1716
},
1817
"autoload": {
1918
"psr-4": {

0 commit comments

Comments
 (0)