-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 1.65 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "bhittani/container",
"description": "PSR-11 dependency injection container implementation with automatic resolution, service providers, facades and macros.",
"keywords": [
"dependency",
"injection",
"container",
"di",
"ioc",
"psr-11",
"service-provider",
"facades",
"macros"
],
"homepage": "https://github.com/kamalkhan/container",
"license": "MIT",
"authors": [
{
"name": "Kamal Khan",
"email": "shout@bhittani.com",
"homepage": "http://bhittani.com"
}
],
"support": {
"issues": "https://github.com/kamalkhan/container/issues"
},
"autoload": {
"psr-4": {
"Bhittani\\Container\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bhittani\\Container\\": "tests"
},
"files": [
"tests/fixtures.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"platform": {
"php": "7.2.5"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2",
"psr/container": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"phpunit/phpunit": "^8.5"
},
"provide": {
"psr/container-implementation": "1.0.0"
},
"scripts": {
"test": "phpunit --colors=always",
"cs-fix": "php-cs-fixer fix",
"cs-check": "php-cs-fixer fix --dry-run"
}
}