Skip to content

Commit 36dfbd7

Browse files
committed
Initialize
1 parent b221d46 commit 36dfbd7

16 files changed

+2275
-2
lines changed

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"tabWidth": 4,
3+
"useTabs": false
4+
}

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
# core
2-
PHP re-implementation of the ASP.NET Core and other C#-like components.
1+
# lepo\core
2+
3+
[Created with ❤ in Poland by lepo.co](https://dev.lepo.co/)
4+
5+
Kinda Dependency Injection for PHP 8.2

composer.json

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"name": "lepo/core",
3+
"description": "PHP dependency injection and hosting",
4+
"type": "library",
5+
"license": "MIT",
6+
"version": "0.1.0",
7+
"keywords": [
8+
"di",
9+
"asp.net",
10+
"dependency",
11+
"injection",
12+
"hosting",
13+
"routing",
14+
"net",
15+
"service",
16+
"list",
17+
"monitoring",
18+
"monitorowanie",
19+
"packages",
20+
"package"
21+
],
22+
"autoload": {
23+
"psr-4": {
24+
"Lepo\\Core\\": "src/"
25+
},
26+
"classmap": [
27+
"src/"
28+
]
29+
},
30+
"authors": [
31+
{
32+
"name": "Leszek Pomianowski"
33+
}
34+
],
35+
"minimum-stability": "dev",
36+
"require": {
37+
"php": "^8.1 || ^8.2"
38+
},
39+
"require-dev": {
40+
"phpunit/phpunit": "^10"
41+
},
42+
"config": {
43+
"allow-plugins": {
44+
"pestphp/pest-plugin": true
45+
}
46+
}
47+
}

0 commit comments

Comments
 (0)