-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
133 lines (133 loc) · 4.25 KB
/
composer.json
File metadata and controls
133 lines (133 loc) · 4.25 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "biigle/core",
"description": "Application core of BIIGLE, the image and video annotation tool.",
"keywords": ["biigle", "image-annotation", "video-annotation"],
"license": "GPL-3.0-only",
"support": {
"source": "https://github.com/biigle/core",
"issues": "https://github.com/biigle/core/issues"
},
"homepage": "https://biigle.de",
"type": "project",
"authors": [
{
"name": "Martin Zurowietz",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-exif": "*",
"ext-json": "*",
"ext-pgsql": "*",
"ext-soap": "*",
"ext-zip": "*",
"biigle/laravel-file-cache": "^5.0",
"biigle/metadata-ifdo": "^1.0",
"duncan3dc/bom-string": "^1.1",
"endroid/qr-code": "^5.0",
"guzzlehttp/guzzle": "^7.2",
"jcupitt/vips": "^2.4",
"jmikola/geojson": "^1.0",
"laravel/framework": "^12.0",
"laravel/tinker": "^2.9",
"laravel/ui": "^4.0",
"meyfa/php-svg": "^0.14.7",
"msurguy/honeypot": "^1.0",
"pgvector/pgvector": "^0.1.4",
"php-ffmpeg/php-ffmpeg": "^1.0",
"pusher/pusher-php-server": "^7.2",
"ramsey/uuid": "^4.0"
},
"require-dev": {
"brianium/paratest": "^7.4",
"fakerphp/faker": "^1.23",
"filp/whoops": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"larastan/larastan": "^3.0",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.1",
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"Biigle\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Biigle\\Tests\\": "tests/php/"
},
"classmap": [
"tests/TestCase.php",
"tests/ApiTestCase.php",
"tests/ModelTestCase.php",
"tests/CreatesApplication.php"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@pull-modules",
"@php artisan key:generate --ansi",
"@php artisan vendor:publish --ansi --tag=public",
"@php -r \"copy('https://github.com/biigle/core/releases/download/v3.106.0/dinov2_vits14.onnx', 'public/assets/dinov2_vits14.onnx');\""
],
"test": [
"docker compose run --rm worker php vendor/bin/phpunit --colors=always --random-order"
],
"testf": [
"docker compose run --rm worker php vendor/bin/phpunit --colors=always --filter"
],
"testp": [
"docker compose restart database_testing && docker compose run --rm worker php artisan test --parallel"
],
"fix": [
"@php vendor/bin/php-cs-fixer fix --config='.php-cs-fixer.php'"
],
"doc": [
"rm -rf public/doc/server",
"php doctum.phar update doctum.php"
],
"lint": [
"@php vendor/bin/phpstan analyse"
],
"pull-modules": [
"PPWD=$PWD; for f in $(find vendor/biigle -mindepth 1 -maxdepth 1 -type d); do cd $f; git checkout $(basename $(git symbolic-ref refs/remotes/origin/HEAD)); git pull; cd $PPWD; done"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"biigle/*": "source",
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"platform": {
"php": "8.2.21"
}
},
"prefer-stable": true
}