Skip to content

Commit 012a13e

Browse files
committed
First commit
0 parents  commit 012a13e

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
vendor/
2+
.idea/
3+

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[![status](https://img.shields.io/badge/status-dev-red.svg)](https://github.com/steevanb/symfony-container-profiler)

composer.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "steevanb/symfony-container-profiler",
3+
"license": "MIT",
4+
"type": "lib",
5+
"description": "Get all Symfony Container informations you need: registered services, instanciated services etc",
6+
"autoload": {
7+
"psr-4": { "steevanb\\ContainerProfiler\\": "" }
8+
},
9+
"require": {
10+
"php": "^7.1",
11+
"symfony/dependency-injection": "^3.3"
12+
},
13+
"repositories": [
14+
{
15+
"type": "vcs",
16+
"url": "https://github.com/steevanb/symfony-container-profiler.git"
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)