This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
95 lines (95 loc) · 2.27 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "sikessem/capsule",
"description": "Capsule is designed to make it easier to manage dependencies and objects, while improving encapsulation and ensuring code quality.",
"homepage": "https://packagist.org/packages/sikessem/capsule",
"keywords": [
"capsule",
"encapsulation",
"accessor",
"mutator",
"property",
"getter",
"setter",
"method",
"event",
"di",
"ioc",
"dic",
"container",
"psr",
"dependency-injection",
"injector",
"encapsulator",
"psr11",
"php"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "SIGUI Kessé Emmanuel",
"email": "[email protected]",
"homepage": "http://sikessem.com"
}
],
"require": {
"php": "^8.1||^8.2",
"psr/container": "^2.0",
"sikessem/debugger": "^0.0.0"
},
"require-dev": {
"sikessem/devtools": "^0.0.0"
},
"autoload": {
"psr-4": {
"Sikessem\\Capsule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sikessem\\Capsule\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse --ansi --memory-limit=-1 --debug",
"check": "pint --test -v",
"debug": [
"@check",
"@analyse",
"@inspect",
"@review",
"@test"
],
"devtools:init": [
"psalm --init",
"rector init",
"pest --init"
],
"fix": [
"@refactor",
"@format",
"@lint"
],
"format": "psalter --issues=all",
"inspect": "psalm --no-diff",
"lint": "pint -v",
"test": "pest --colors=always",
"review": "rector --dry-run --debug",
"refactor": "rector"
},
"extra": {
"branch-alias": {
"dev-main": "0.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}