Skip to content

Commit 80e7b80

Browse files
committed
fix error in package name
1 parent d110d3d commit 80e7b80

3 files changed

Lines changed: 10 additions & 11 deletions

File tree

.travis.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
language: php
22

33
php:
4-
- 5.3
4+
- 5.5
55

66
before_script:
77
- cd ..
88
- git clone git://github.com/zendframework/ZendSkeletonApplication.git
99
- cd ZendSkeletonApplication
10-
- rm .gitmodules
11-
- git rm --cached vendor/ZF2
10+
- git checkout -b br-release-2.3.3 release-2.3.3
1211
- cp ../DOMPDFModule/.travis/composer.json ./
1312
- curl -s http://getcomposer.org/installer | php
1413
- php composer.phar install
15-
- rm -rf vendor/dino/dompdf-module
16-
- cp -r ../DOMPDFModule vendor/dino/dompdf-module
14+
- rm -rf vendor/netiul/dompdf-module/*
15+
- cp -r ../DOMPDFModule vendor/netiul/dompdf-module
1716

1817
script:
19-
- cd vendor/dino/dompdf-module/tests
20-
- phpunit
18+
- cd vendor/netiul/dompdf-module/tests
19+
- ../../../bin/phpunit

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
DOMPDFModule
22
============
33

4-
Master: [![Build Status](https://secure.travis-ci.org/raykolbe/DOMPDFModule.png?branch=master)](http://travis-ci.org/raykolbe/DOMPDFModule)
4+
Master: [![Build Status](https://secure.travis-ci.org/netiul/DOMPDFModule.png?branch=master)](http://travis-ci.org/netiul/DOMPDFModule)
55

66
The DOMPDF module integrates the DOMPDF library with Zend Framework 2 with minimal
77
effort on the consumer's end.
@@ -21,7 +21,7 @@ PHP Composer, please visit the official [PHP Composer site](http://getcomposer.o
2121
```json
2222
{
2323
"require": {
24-
"dino/dompdf-module": "dev-master"
24+
"netiul/dompdf-module": "^0.4"
2525
}
2626
}
2727
```

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "netul/dompdf-module",
2+
"name": "netiul/dompdf-module",
33
"type": "library",
44
"description": "A Zend Framework 2 module for incorporating DOMPDF support.",
55
"keywords": ["pdf","dompdf", "zf2"],
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^5.3.0",
15+
"php": "^5.5.0",
1616
"dompdf/dompdf": "^0.6",
1717
"zendframework/zend-eventmanager": "^2.3",
1818
"zendframework/zend-servicemanager": "^2.3",

0 commit comments

Comments
 (0)