Skip to content

Commit 2d478cc

Browse files
authored
Merge pull request #81 from PHPJasper/develop
Develop
2 parents 8140797 + addbf04 commit 2d478cc

13 files changed

+155
-93
lines changed

.gitignore

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
.idea/
2-
/vendor
2+
/vendor
3+
tests/PHPJasper/*.jasper
4+
5+
# IDE
6+
## Eclipse
7+
.buildpath
8+
.project
9+
.settings

.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: php
2+
php:
3+
- 7.0
4+
before_script:
5+
- composer install
6+
script:
7+
- vendor/bin/phpunit
8+
- vendor/bin/phpcs --standard=PSR2 -n src tests

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ _A PHP Report Generator_
44
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/geekcom/phpjasper/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/geekcom/phpjasper/?branch=master)
55
[![Latest Stable Version](https://img.shields.io/packagist/v/geekcom/phpjasper.svg?style=flat-square)](https://packagist.org/packages/geekcom/phpjasper)
66
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.1-blue.svg?style=flat-square)](https://php.net/)
7-
[![License](https://poser.pugx.org/geekcom/phpjasper/license)](https://packagist.org/packages/geekcom/phpjasper)
7+
[![License](https://poser.pugx.org/geekcom/phpjasper/license)](https://packagist.org/packages/geekcom/phpjasper)
8+
[![Build Status](https://travis-ci.org/geekcom/phpjasper.svg?branch=master)](https://travis-ci.org/geekcom/phpjasper)
89

910
### Docs
1011
[![Language-pt_BR](https://img.shields.io/badge/pt__BR-100%25-green.svg)](https://github.com/PHPJasper/phpjasper/blob/master/docs/pt_BR/LEIA-ME_pt_BR.md)

composer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@
1616
],
1717
"minimum-stability": "stable",
1818
"require": {
19-
"php": ">=7.1"
19+
"php": ">=7.0"
2020
},
2121
"require-dev": {
22-
"phpunit/phpunit": "^6.1"
22+
"phpunit/phpunit": "^6.1",
23+
"squizlabs/php_codesniffer": "^3.1"
2324
},
2425
"autoload": {
2526
"psr-4": {

0 commit comments

Comments
 (0)