Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
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
Copy Markdown

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
Copy Markdown
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
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.3.29",
"php": "^7.0",

Copy link
Copy Markdown

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",
Expand Down
2 changes: 1 addition & 1 deletion config/module.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
*
* *Please note the trailing slash.*
*/
'font_directory' => __DIR__ . '/../../../dompdf/dompdf/lib/fonts/2',
'font_directory' => __DIR__ . '/../../../dompdf/dompdf/lib/fonts/',

/**
* The location of the DOMPDF font cache directory
Expand Down