-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.18 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
{
"name": "brucegithub/namespace-protector",
"description": "A tool to protect your namespace",
"type": "library",
"license": "MIT",
"bin": [
"bin/namespace-protector"
],
"config": {
"sort-packages": true
},
"repositories": [
{
"type": "git",
"url": "https://github.com/BruceGitHub/minimal-vo.git"
}
],
"require": {
"php": "^8",
"ext-json": "*",
"brucegithub/minimal-vo": "dev-main",
"graphp/graphviz": "0.2.*",
"nikic/php-parser": "^4.4",
"psr/event-dispatcher": "^1.0",
"psr/simple-cache": "^1.0",
"symfony/console": "^5.1",
"thecodingmachine/safe": "^1.1",
"webmozart/assert": "^1.8"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"pestphp/pest": "^1.21",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^4.4"
},
"autoload": {
"psr-4": {
"NamespaceProtector\\": "src"
},
"classmap": [
"src"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "BruceGitHub",
"email": "[email protected]"
}
]
}