Skip to content

Commit

Permalink
pasted old code in...
Browse files Browse the repository at this point in the history
  • Loading branch information
stivni committed Apr 17, 2014
1 parent 891333b commit 8aef2af
Show file tree
Hide file tree
Showing 13 changed files with 924 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
vendor/
bin/

.idea
.DS_Store

composer.lock
composer.phar
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@ PhpPdftkManipulators
====================

Some helper classes to manipulate PDF files in PHP with the Pdftk library

## Requirements

* You need a pdftk binary somewhere for PdfCombiner
* You need the Imagick extension for PdfToImageConvertor: "pecl install imagick" or "apt-get install php5-imagick"
25 changes: 25 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "stivni/php-pdftk-manipulators",
"description": "Some helper classes to manipulate PDF files in PHP with the Pdftk library",
"homepage": "https://github.com/stivni/PhpPdftkManipulators",
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "4.0.*"
},
"authors": [
{
"name": "Stijn Vannieuwenhuyse",
"email": "[email protected]"
}
],
"keywords": [],
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"PhpPdftkManipulators\\": ["src/PhpPdftkManipulators", "tests/PhpPdftkManipulators"]
}
},
"minimum-stability": "dev"
}
Loading

0 comments on commit 8aef2af

Please sign in to comment.