Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to ZF3 #57

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/vendor
.idea
6 changes: 1 addition & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@ matrix:
fast_finish: true

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add 5.6 and 7.0 back to tests too

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried adding PHP version 5.6 but this one giving error because of a doctrine dependency, could help solve?


before_script:
- curl -s http://getcomposer.org/installer | php
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ DOMPDFModule

[![Build Status](https://secure.travis-ci.org/raykolbe/DOMPDFModule.png?branch=master)](http://travis-ci.org/raykolbe/DOMPDFModule) [![Code Climate](https://codeclimate.com/github/raykolbe/DOMPDFModule/badges/gpa.svg)](https://codeclimate.com/github/raykolbe/DOMPDFModule) [![Test Coverage](https://codeclimate.com/github/raykolbe/DOMPDFModule/badges/coverage.svg)](https://codeclimate.com/github/raykolbe/DOMPDFModule/coverage) [![Total Downloads](https://poser.pugx.org/dino/dompdf-module/downloads)](https://packagist.org/packages/dino/dompdf-module) [![License](https://poser.pugx.org/dino/dompdf-module/license)](https://packagist.org/packages/dino/dompdf-module)

The DOMPDF module integrates the DOMPDF library with Zend Framework 2 with minimal
The DOMPDF module integrates the DOMPDF library with Zend Framework with minimal
effort on the consumer's end.

## Requirements
- [Zend Framework 2](http://www.github.com/zendframework/zf2)
- [Zend Framework ](http://www.github.com/zendframework/)

## Installation
Installation of DOMPDFModule uses PHP Composer. For more information about
Expand Down
43 changes: 22 additions & 21 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "dino/dompdf-module",
"type": "library",
"description": "A Zend Framework 2 module for incorporating DOMPDF support.",
"keywords": ["pdf","dompdf", "zf2"],
"description": "A Zend Framework module for incorporating DOMPDF support.",
"keywords": ["pdf","dompdf", "zf"],
"homepage": "http://raymondkolbe.com",
"license": "MIT",
"authors": [
Expand All @@ -11,30 +11,31 @@
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.3.29",
"zendframework/zend-loader": "^2.1.6",
"zendframework/zend-servicemanager": "^2.1.6",
"zendframework/zend-modulemanager": "^2.1.6",
"zendframework/zend-mvc": "^2.1.6 <2.7",
"zendframework/zend-view": "^2.1.6",
"zendframework/zend-serializer": "^2.1.6",
"zendframework/zend-log": "^2.1.6",
"zendframework/zend-i18n": "^2.1.6",
"zendframework/zend-http": "^2.1.6",
"zendframework/zend-console": "^2.1.6",
"dompdf/dompdf": "^0.6.0"
"php": "^7.0",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

change back to 5.6

"dompdf/dompdf": "^0.8.0",
"zendframework/zend-loader": "^2.5",
"zendframework/zend-modulemanager": "^2.8",
"zendframework/zend-mvc": "^3.1",
"zendframework/zend-view": "^2.9",
"zendframework/zend-serializer": "^2.8",
"zendframework/zend-log": "^2.9",
"zendframework/zend-i18n": "^2.7",
"zendframework/zend-http": "^2.6",
"zendframework/zend-console": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^4.8.27",
"codeclimate/php-test-reporter": "^0.3.2",
"fabpot/php-cs-fixer": "^1.12",
"squizlabs/php_codesniffer": "^2.7",
"phpmd/phpmd": "^2.4"
"friendsofphp/php-cs-fixer": "^2.4",
"phpmd/phpmd": "^2.6",
"squizlabs/php_codesniffer": "^3.0",
"codeclimate/php-test-reporter": "^0.4.4",
"phpunit/phpunit": "^6.2"
},
"autoload": {
"psr-0": {
"DOMPDFModule": "src/"
"psr-4": {
"DOMPDFModule\\": "src/"
}
},
"autoload-dev": {
Expand Down
Loading