-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #479 from KnpLabs/v2-unstable-bundle
feat: add bundle shell
- Loading branch information
Showing
6 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/composer.lock | ||
/vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/spec/ export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/composer.lock | ||
/vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" | ||
} | ||
} | ||
} |