Skip to content

Commit

Permalink
fix error in package name
Browse files Browse the repository at this point in the history
  • Loading branch information
zluiten committed Apr 29, 2016
1 parent d110d3d commit 80e7b80
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
13 changes: 6 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
language: php

php:
- 5.3
- 5.5

before_script:
- cd ..
- git clone git://github.com/zendframework/ZendSkeletonApplication.git
- cd ZendSkeletonApplication
- rm .gitmodules
- git rm --cached vendor/ZF2
- git checkout -b br-release-2.3.3 release-2.3.3
- cp ../DOMPDFModule/.travis/composer.json ./
- curl -s http://getcomposer.org/installer | php
- php composer.phar install
- rm -rf vendor/dino/dompdf-module
- cp -r ../DOMPDFModule vendor/dino/dompdf-module
- rm -rf vendor/netiul/dompdf-module/*
- cp -r ../DOMPDFModule vendor/netiul/dompdf-module

script:
- cd vendor/dino/dompdf-module/tests
- phpunit
- cd vendor/netiul/dompdf-module/tests
- ../../../bin/phpunit
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DOMPDFModule
============

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

The DOMPDF module integrates the DOMPDF library with Zend Framework 2 with minimal
effort on the consumer's end.
Expand All @@ -21,7 +21,7 @@ PHP Composer, please visit the official [PHP Composer site](http://getcomposer.o
```json
{
"require": {
"dino/dompdf-module": "dev-master"
"netiul/dompdf-module": "^0.4"
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "netul/dompdf-module",
"name": "netiul/dompdf-module",
"type": "library",
"description": "A Zend Framework 2 module for incorporating DOMPDF support.",
"keywords": ["pdf","dompdf", "zf2"],
Expand All @@ -12,7 +12,7 @@
}
],
"require": {
"php": "^5.3.0",
"php": "^5.5.0",
"dompdf/dompdf": "^0.6",
"zendframework/zend-eventmanager": "^2.3",
"zendframework/zend-servicemanager": "^2.3",
Expand Down

0 comments on commit 80e7b80

Please sign in to comment.