-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
35 lines (33 loc) · 909 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "emrancu/php-dependency-injection-container",
"description": "A dependency injection container for php",
"license": "MIT",
"homepage": "https://github.com/emrancu/php-dependency-injection-container",
"support": {
"issues": "https://github.com/emrancu/php-dependency-injection-container/issues",
"source": "https://github.com/emrancu/php-dependency-injection-container"
},
"authors": [
{
"name": "AL EMRAN",
"email": "[email protected]"
}
],
"keywords": [
"A dependency injection container for php",
"PHP Dependency Injection",
"Laravel Dependency Injection Understanding",
"Initiate Class and method with dependency "
],
"autoload": {
"classmap": [],
"psr-4": {
"AlEmran\\PHPDependencyInjection\\": "src/"
}
},
"require": {
"php": ">=7.0.0"
},
"minimum-stability": "dev",
"prefer-stable": true
}