Skip to content

Commit

Permalink
Implemented service container
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmcrae committed Sep 2, 2024
1 parent 909273e commit 5e00595
Show file tree
Hide file tree
Showing 12 changed files with 4,348 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.phpunit.cache
node_modules
vendor/
docs/.vitepress/cache
docs/.vitepress/dist
22 changes: 22 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "joshmcrae/kick",
"description": "A micro framework with the essentials",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Kick\\": "src/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"check": "./vendor/bin/psalm"
},
"require": {
"php": "^8.3"
},
"require-dev": {
"phpunit/phpunit": "^11.3",
"vimeo/psalm": "dev-master"
}
}
Loading

0 comments on commit 5e00595

Please sign in to comment.