-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
96 lines (96 loc) · 2.67 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
{
"name" : "jon48/webtrees-lib",
"description" : "Library to extend webtrees core capabilities",
"type" : "library",
"keywords" : [
"webtrees",
"genealogy"
],
"homepage" : "https://github.com/jon48/webtrees-lib",
"license" : "GPL-3.0-or-later",
"authors" : [{
"name" : "Jonathan Jaubart",
"email" : "dev@jaubart.com",
"homepage" : "http://www.jaubart.com",
"role" : "Developer"
}
],
"support" : {
"issues" : "http://bugs.jaubart.com"
},
"config" : {
"platform" : {
"php" : "7.4"
},
"sort-packages" : true,
"process-timeout" : 3600,
"preferred-install": {
"fisharebest/webtrees": "source"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
}
},
"require" : {
"aura/router": "~3.1",
"brick/geo": "^0.7.0",
"brick/math": "~0.9",
"fig/http-message-util": "^1.1",
"fisharebest/flysystem-chroot-adapter": "~2.0",
"fisharebest/webtrees": "~2.1.18",
"guzzlehttp/guzzle": "~7.1",
"illuminate/collections": "~8.20",
"illuminate/database": "~8.20",
"illuminate/support": "~8.20",
"intervention/image": "^2.5",
"league/flysystem": "~2.0",
"nesbot/carbon": "~2.35",
"paragonie/sodium_compat": "~1.13",
"psr/http-message": "~1.0",
"psr/http-server-handler": "~1.0",
"spatie/color": "^1.2",
"symfony/polyfill-php80": "^1.23"
},
"require-dev" : {
"bamarni/composer-bin-plugin": "^1.8",
"league/flysystem-memory": "^2.0",
"phpunit/phpunit": "@stable"
},
"suggest": {
"ext-sodium": "Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
},
"autoload" : {
"psr-4" : {
"MyArtJaub\\Webtrees\\" : "app/"
},
"files" : [
"app/Helpers/functions.php"
]
},
"autoload-dev": {
"psr-4" : {
"MyArtJaub\\Tests\\Helpers\\Webtrees\\" : "tests/helpers",
"MyArtJaub\\Tests\\Unit\\Webtrees\\" : "tests/unit"
},
"files" : [
"vendor/fisharebest/webtrees/tests/TestCase.php",
"vendor/fisharebest/webtrees/tests/app/Elements/AbstractElementTestCase.php"
]
},
"scripts": {
"webtrees-lib:phpcs" : "phpcs -s",
"webtrees-lib:phpcbf" : "phpcbf",
"webtrees-lib:phpstan" : "./vendor-bin/phpstan/vendor/bin/phpstan analyze",
"webtrees-lib:sonar" : "sonar-scanner",
"webtrees-lib:test": "phpunit",
"webtrees-lib:coverage": "phpunit --coverage-clover=tests/coverage.xml --coverage-html=tests/coverage"
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
}
}
}