Skip to content

Commit 594eac7

Browse files
committed
Merge pull request #5 from alexander-schranz/develop
Fix composer json add readme
2 parents f120093 + 04de359 commit 594eac7

File tree

3 files changed

+20
-19
lines changed

3 files changed

+20
-19
lines changed

README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,17 @@
1-
SuluPdfBundle
2-
=============
1+
MassivePdfBundle
2+
================
3+
4+
## Installation
5+
6+
``` json
7+
composer require massive/pdf-bundle
8+
```
9+
10+
## Usage
11+
========
12+
13+
``` php
14+
/** @var \Massive\Bundle\PdfBundle\Pdf\PdfManager $pdfManager */
15+
$pdfManager = $this->get('massive_pdf.pdf_manager'); // get the service or inject it in your services configuration
16+
$pdf = $pdfManager->convertToPdf($templatePath, $templateData);
17+
```

Resources/config/routing.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

composer.json

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,16 @@
66
"authors": [
77
{
88
"name": "MassiveArt Webservices GmbH",
9-
"homepage": "https://github.com/massiveart/SuluPdfBundle/contributors"
9+
"homepage": "https://github.com/massiveart/MassivePdfBundle/contributors"
1010
}
1111
],
1212
"require": {
1313
"php": ">=5.4",
14-
"doctrine/orm": "~2.5",
15-
"symfony-cmf/routing-bundle": "1.2.*",
16-
"sulu/sulu": "dev-develop",
17-
"knplabs/knp-snappy-bundle": "dev-master"
14+
"knplabs/knp-snappy-bundle": "~1.3"
1815
},
1916
"require-dev": {
2017
"sensio/framework-extra-bundle": "~3.0",
21-
"symfony/symfony": "2.6.*",
22-
"doctrine/doctrine-bundle": "1.2.*",
23-
"symfony/monolog-bundle": "2.4.*",
24-
"phpunit/phpunit": "3.7.*",
25-
"sulu/test-bundle": "dev-develop",
26-
"massive/search-bundle": "~1.0@dev"
18+
"symfony/symfony": "~2.6"
2719
},
2820
"autoload": {
2921
"psr-0": {

0 commit comments

Comments
 (0)