Skip to content

Commit d7d7467

Browse files
committed
add bundle
1 parent 10c624c commit d7d7467

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.gitattributes

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Exclude non-essential files from dist
22
.github export-ignore
3-
tests export-ignore
3+
Tests export-ignore
44
index.html export-ignore
5+
.gitattributes export-ignore
6+
.gitignore export-ignore
57
phpmd.xml.dist export-ignore
68
phpunit.xml.dist export-ignore

DevgineDemoBundle.php

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
namespace Devgine\Demo;
4+
5+
use Symfony\Component\HttpKernel\Bundle\Bundle;
6+
7+
class DevgineDemoBundle extends Bundle
8+
{
9+
}

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"homepage": "https://github.com/devgine/demo-repository",
77
"require": {
88
"php": ">=8.1",
9-
"symfony/console": "^6.1"
9+
"symfony/console": "^6.1",
10+
"symfony/http-kernel": "6.3.x-dev"
1011
},
1112
"license": "MIT",
1213
"autoload": {

0 commit comments

Comments
 (0)