Skip to content

Commit 0ee7387

Browse files
committedAug 18, 2016
wip
1 parent 9011f9e commit 0ee7387

8 files changed

+69
-11
lines changed
 

‎.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
; This file is for unifying the coding style for different editors and IDEs.
2+
; More information at http://editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
indent_size = 4
9+
indent_style = space
10+
end_of_line = lf
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
14+
[*.md]
15+
trim_trailing_whitespace = false

‎.gitattributes

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

‎.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
/vendor
22
composer.phar
33
composer.lock
4-
.DS_Store

‎.travis.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,9 @@ php:
44
- 5.4
55
- 5.5
66
- 5.6
7-
- hhvm
8-
- 7
9-
10-
matrix:
11-
allow_failures:
12-
- php: 7
7+
- 7.0
8+
- 7.1
9+
1310

1411
before_script:
1512
- composer install --prefer-source --no-interaction --dev

‎CHANGELOG.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@
22

33
All Notable changes to `browsershot` will be documented in this file
44

5-
##1.5.1 - 2016-04-25
5+
### 1.5.2 - 2016-08-18
6+
- Upgrade `phantomjs` binary
7+
8+
### 1.5.1 - 2016-04-25
69
- Fixed a bug where phantomjs keeps on rendering until the end of time
710

8-
##1.5.0
11+
### 1.5.0
912
- Added a method to set the background color
1013

11-
##1.4.0
14+
### 1.4.0
1215
- Added timeout parameter
1316

14-
##1.3.0
17+
### 1.3.0
1518
- Added quality parameter

‎CONTRIBUTING.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Contributing
2+
3+
Contributions are **welcome** and will be fully **credited**.
4+
5+
We accept contributions via Pull Requests on [Github](https://github.com/spatie/laravel-link-checker).
6+
7+
8+
## Pull Requests
9+
10+
- **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](http://pear.php.net/package/PHP_CodeSniffer).
11+
12+
- **Add tests!** - Your patch won't be accepted if it doesn't have tests.
13+
14+
- **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.
15+
16+
- **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option.
17+
18+
- **Create feature branches** - Don't ask us to pull from your master branch.
19+
20+
- **One pull request per feature** - If you want to do more than one thing, send multiple pull requests.
21+
22+
- **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](http://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting.
23+
24+
25+
## Running Tests
26+
27+
``` bash
28+
$ phpunit
29+
```
30+
31+
32+
**Happy coding**!

‎LICENSE renamed to ‎LICENSE.md

File renamed without changes.

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
[![Latest Version](https://img.shields.io/github/release/spatie/browsershot.svg?style=flat-square)](https://github.com/spatie/browsershot/releases)
44
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
55
[![Build Status](https://img.shields.io/travis/spatie/browsershot/master.svg?style=flat-square)](https://travis-ci.org/spatie/browsershot)
6+
[![StyleCI](https://styleci.io/repos/19386515/shield)](https://styleci.io/repos/19386515)
7+
[![SensioLabsInsight](https://img.shields.io/sensiolabs/i/9c1184fb-1edb-41d5-9d30-2620d99447c7.svg?style=flat-square)](https://insight.sensiolabs.com/projects/9c1184fb-1edb-41d5-9d30-2620d99447c7)
68
[![Total Downloads](https://img.shields.io/packagist/dt/spatie/browsershot.svg?style=flat-square)](https://packagist.org/packages/spatie/browsershot)
79

810

0 commit comments

Comments
 (0)
Please sign in to comment.