-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.16 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.16 KB
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
{
"version": "1.0.0",
"name": "harbor/harbor",
"bin": [
"bin/harbor",
"bin/harbor-command",
"bin/harbor-init",
"bin/harbor-test",
"bin/harbor-docs",
"bin/harbor-docs-index",
"bin/harbor-config",
"bin/harbor-fixer",
"bin/harbor-migration",
"bin/harbor-seed"
],
"autoload": {
"psr-4": {
"Harbor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Harbor\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Adrijan Mitrov",
"email": "adrijan9@gmail.com"
}
],
"require": {
"php": "^8.5",
"ext-mysqli": "*",
"ext-pdo": "*",
"nesbot/carbon": "^3.8",
"lcobucci/jwt": "^5.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"phpunit/phpunit": "^11.5",
"symfony/var-dumper": "^8.0",
"rector/rector": "^2.3"
},
"scripts": {
"test": "phpunit",
"rector": "rector process --config rector.php",
"rector:check": "rector process --config rector.php --dry-run"
}
}