Skip to content

Commit 25163f2

Browse files
authored
Merge pull request #19 from leviy/remove-composer-lockfile
Remove the composer.lock file from the repository
2 parents 6f940b3 + 0b71537 commit 25163f2

File tree

5 files changed

+15
-621
lines changed

5 files changed

+15
-621
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/.idea/
2-
/vendor/
2+
/composer.lock
33
/phpcs.log
4+
/vendor/

.travis.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ branches:
55
language: php
66

77
php:
8-
- 7.1
9-
- 7.2
8+
- '7.1'
9+
- '7.2'
10+
11+
matrix:
12+
include:
13+
- name: Test with the lowest allowed versions of dependencies
14+
php: '7.1'
15+
install: composer update --prefer-lowest
1016

1117
cache:
1218
directories:

Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
REPORT = full
22

3-
vendor: composer.json
3+
vendor: composer.lock
44
composer install
55

6+
composer.lock: composer.json
7+
composer update
8+
69
.PHONY: check
710
check: vendor
811
vendor/bin/phpmd src/ text phpmd.xml

0 commit comments

Comments
 (0)