-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 1.31 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
{
"name": "satisfactory-clips-archive/media-search-archive",
"description": "Static site generator for https://archive.satisfactory.video/",
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "SignpostMarv",
"email": "me@signpostmarv.name"
}
],
"autoload": {
"files": [
"./app/src/funcs.php"
],
"psr-4": {
"SignpostMarv\\VideoClipNotes\\": [
"./app/src/"
]
}
},
"autoload-dev": {
"files": [
"./app/src-dev/funcs.php"
],
"psr-4": {
"SignpostMarv\\VideoClipNotes\\": [
"./tests/"
]
}
},
"config": {
"classmap-authoritative": true,
"sort-packages": true
},
"scripts": {
"composer-require-checker": [
"composer-require-checker check --config-file ./composer-require-checker.json -- ./composer.json"
]
},
"require": {
"php": "^8.1",
"ext-bcmath": "*",
"ext-ctype": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"cocur/slugify": "^4.1",
"google/apiclient": "^2.12",
"masterminds/html5": "^2.7"
},
"require-dev": {
"maglnet/composer-require-checker": "^4.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"roave/security-advisories": "dev-latest",
"satisfactory-clips-archive/querypath": "^1.0",
"signpostmarv/php-cs-fixer-config": "^0.22.0",
"vimeo/psalm": "^4.23"
}
}