Skip to content

Commit

Permalink
Merge pull request #479 from KnpLabs/v2-unstable-bundle
Browse files Browse the repository at this point in the history
feat: add bundle shell
  • Loading branch information
alexpozzi authored Jun 23, 2023
2 parents 450b77c + 7cf53c7 commit f0c3a85
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.github/ export-ignore
/spec/ export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/composer.lock
/vendor
3 changes: 3 additions & 0 deletions src/Bundle/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/spec/ export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
2 changes: 2 additions & 0 deletions src/Bundle/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/composer.lock
/vendor
10 changes: 10 additions & 0 deletions src/Bundle/SnappyBundle.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

namespace KnpLabs\Snappy\Bundle;

use Symfony\Component\HttpKernel\Bundle\AbstractBundle;

class SnappyBundle extends AbstractBundle
{

}
33 changes: 33 additions & 0 deletions src/Bundle/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "knplabs/snappy-bundle",
"type": "symfony-bundle",
"description": "Easily create PDF and images in Symfony from HTML inputs",
"keywords": ["knplabs", "knp", "snappy", "pdf", "bundle"],
"homepage": "http://github.com/KnpLabs/snappy",
"license": "MIT",
"authors": [
{
"name": "KnpLabs",
"homepage": "https://knplabs.com"
},
{
"name": "Symfony Community",
"homepage": "http://github.com/KnpLabs/snappy/contributors"
}
],
"require": {
"php": ">=8.0",
"symfony/http-kernel": "^5.4|^6.2"
},
"autoload": {
"psr-4": { "KnpLabs\\Snappy\\Bundle\\": "" },
"exclude-from-classmap": [
"/spec/"
]
},
"autoload-dev": {
"psr-4": {
"KnpLabs\\Snappy\\Bundle\\Spec\\": "spec/"
}
}
}

0 comments on commit f0c3a85

Please sign in to comment.