-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
composer.json
91 lines (87 loc) · 2.24 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
{
"name": "shish/shimmie2",
"description": "A tag-based image gallery",
"type" : "project",
"license" : "GPL-2.0-or-later",
"minimum-stability" : "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.2.0"
}
},
"repositories" : [
{
"type": "composer",
"url": "https://asset-packagist.org"
},
{
"type" : "package",
"package" : {
"name" : "ifixit/php-akismet",
"version" : "1.1",
"source" : {
"url" : "https://github.com/iFixit/php-akismet.git",
"type" : "git",
"reference" : "fd4ff50eb577457c1b7b887401663e91e77625ae"
}
}
}
],
"require" : {
"php" : "^8.2",
"ext-pdo": "*",
"ext-json": "*",
"ext-fileinfo": "*",
"ifixit/php-akismet": "^1.0",
"google/recaptcha": "^1.1",
"shish/eventtracer-php": "^2.0",
"shish/ffsphp": "^1.3",
"shish/microbundler": "^1.0",
"shish/microcrud": "^2.0",
"shish/microhtml": "^2.2",
"shish/gqla": "^1.0",
"shish/safe": "^2.6.2",
"enshrined/svg-sanitize": "^0.16",
"bower-asset/jquery": "^1.12",
"bower-asset/jquery-timeago": "^1.5",
"bower-asset/js-cookie": "^2.1",
"psr/simple-cache": "^1.0",
"sabre/cache": "^2.0.1",
"naroga/redis-cache": "dev-master",
"aws/aws-sdk-php": "^3.294",
"symfony/console": "6.4.x-dev"
},
"require-dev" : {
"phpunit/phpunit" : "^11.0",
"friendsofphp/php-cs-fixer" : "^3.64",
"phpstan/phpstan": "^1.12"
},
"suggest": {
"ext-pdo_sqlite": "database - sqlite",
"ext-pdo_mysql": "database - mysql",
"ext-pdo_pgsql": "database - postgres",
"ext-memcached": "cache - memcache",
"ext-apcu": "cache - apc",
"ext-redis": "cache - redis",
"ext-curl": "some extensions",
"ext-ctype": "some extensions",
"ext-json": "some extensions",
"ext-zip": "self-updater extension, bulk import/export",
"ext-zlib": "anti-spam",
"ext-xml": "some extensions",
"ext-gd": "GD-based thumbnailing"
},
"scripts": {
"check": [
"@format",
"@stan",
"@test"
],
"format": "php-cs-fixer fix",
"stan-ci": "phpstan analyse --memory-limit 1G -c tests/phpstan.neon --error-format=github",
"stan": "phpstan analyse --memory-limit 1G -c tests/phpstan.neon --error-format=raw",
"test": "phpunit --config tests/phpunit.xml",
"docker-run": "./.docker/run.php"
}
}