First commit
This commit is contained in:
commit
d89a7aba8d
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: loann
|
||||
* Date: 28/02/19
|
||||
* Time: 15:27
|
||||
*/
|
||||
|
||||
|
||||
namespace Bluesquare\BillingBundle;
|
||||
|
||||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
||||
|
||||
class BillingBundle extends Bundle
|
||||
{
|
||||
public function build(ContainerBuilder $container)
|
||||
{
|
||||
parent::build($container);
|
||||
}
|
||||
|
||||
// public function getContainerExtension()
|
||||
// {
|
||||
// if (null === $this->extension)
|
||||
// $this->extension = new StorageExtension();
|
||||
// return $this->extension;
|
||||
// }
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"name": "bluesquare-packages/symfony-billing",
|
||||
"description": "Billing bunlde created by Bluesquare Computing",
|
||||
"keywords": ["template", "composer", "package"],
|
||||
"license": "proprietary",
|
||||
"authors": [
|
||||
{
|
||||
"name": "MEIGNANT Loann",
|
||||
"email": "loann@bluesquare.io"
|
||||
}
|
||||
],
|
||||
"type": "symfony-bundle",
|
||||
"require": {
|
||||
"php": ">=7.1",
|
||||
"doctrine/event-manager": "*"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Bluesquare\\BillingBundle\\": "BillingBundle/"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue