forked from biigle/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
107 lines (107 loc) · 3.12 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
96
97
98
99
100
101
102
103
104
105
106
107
{
"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": "^7.2",
"ext-exif": "*",
"ext-json": "*",
"ext-pgsql": "*",
"ext-vips": "*",
"biigle/laravel-file-cache": "^3.1",
"doctrine/annotations": "1.4.0",
"doctrine/dbal": "^2.5",
"fideloper/proxy": "^4.0",
"guzzlehttp/guzzle": "~6.0",
"jcupitt/vips": "^1.0",
"laravel/framework": "^6.0",
"laravel/tinker": "^1.0",
"msurguy/honeypot": "^1.0",
"ramsey/uuid": "^3.5",
"ramsey/uuid-doctrine": "^1.2"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"johnkary/phpunit-speedtrap": "^3.0",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^3.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Biigle\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
],
"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",
"tests/Bootstrap.php"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php artisan vendor:publish --ansi --tag=public"
],
"test": [
"docker-compose run --rm worker php -d memory_limit=1G vendor/bin/phpunit --colors=always --random-order"
],
"testf": [
"docker-compose run --rm worker php -d memory_limit=1G vendor/bin/phpunit --colors=always --filter"
],
"fix": [
"php-cs-fixer fix --config='.php_cs'"
],
"doc": [
"rm -rf public/doc/server",
"php sami.phar update sami.php -v"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}