Skip to content

Commit cfc8cca

Browse files
committed
Add composer.json and require package symfony/console
1 parent 1b3dade commit cfc8cca

File tree

3 files changed

+761
-0
lines changed

3 files changed

+761
-0
lines changed

.gitignore

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

composer.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "thofman/knowledge-base",
3+
"description": "Knowledge base of talks/blogposts",
4+
"type": "library",
5+
"require": {
6+
"php": "^8.4",
7+
"symfony/console": "^8.0"
8+
},
9+
"license": "MIT",
10+
"autoload": {
11+
"psr-4": {
12+
"thofman\\KnowledgeBase\\": "src/"
13+
}
14+
},
15+
"minimum-stability": "stable"
16+
}

0 commit comments

Comments
 (0)