Skip to content

Commit ae288b6

Browse files
committed
wip
1 parent 2e45175 commit ae288b6

File tree

5 files changed

+29
-7
lines changed

5 files changed

+29
-7
lines changed

.gitattributes

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
# Path-based git attributes
3+
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
4+
5+
# Ignore all test and documentation with "export-ignore".
6+
/.gitattributes export-ignore
7+
/.gitignore export-ignore
8+
/.travis.yml export-ignore
9+
/phpunit.xml.dist export-ignore
10+
/.scrutinizer.yml export-ignore
11+
/tests export-ignore

.styleci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
preset: laravel
2+
3+
linting: true

.travis.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
language: php
22

33
php:
4-
- 5.6
4+
- 5.5
55
- 7.0
66
- 7.1
7-
7+
8+
env:
9+
matrix:
10+
- COMPOSER_FLAGS="--prefer-lowest"
11+
- COMPOSER_FLAGS=""
12+
813
before_script:
914
- travis_retry composer self-update
10-
- travis_retry composer install --prefer-source --no-interaction --dev
15+
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
16+
17+
script:
18+
- phpunit --coverage-text --coverage-clover=coverage.clover
1119

12-
script: vendor/bin/phpunit
20+
after_script:
21+
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License (MIT)
22

3-
Copyright (c) 2015 Freek Van der Herten <freek@spatie.be>
3+
Copyright (c) 2016 Spatie bvba <info@spatie.be>
44

55
> Permission is hereby granted, free of charge, to any person obtaining a copy
66
> of this software and associated documentation files (the "Software"), to deal

composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@
1717
}
1818
],
1919
"require": {
20-
"php" : ">=5.3.0"
20+
"php" : ">=5.6.0"
2121
},
2222
"require-dev": {
2323
"phpunit/phpunit" : "4.*",
2424
"mockery/mockery": "0.9.*",
25-
"scrutinizer/ocular": "~1.1"
2625
},
2726
"autoload": {
2827
"psr-4": {

0 commit comments

Comments
 (0)