snootpaintings/composer.json

78 lines
1.9 KiB
JSON
Raw Normal View History

2016-05-11 14:15:58 +00:00
{
2019-11-21 17:12:08 +00:00
"name": "shish/shimmie2",
"description": "A tag-based image gallery",
2016-05-11 14:15:58 +00:00
"type" : "project",
2019-11-21 17:12:08 +00:00
"license" : "GPL-2.0-or-later",
2016-05-12 20:03:39 +00:00
"minimum-stability" : "dev",
2016-05-11 14:15:58 +00:00
2020-12-25 02:38:23 +00:00
"config": {
"platform": {
2022-10-28 00:45:35 +00:00
"php": "8.1.0"
2020-12-25 02:38:23 +00:00
}
},
"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"
}
}
}
],
2016-05-11 14:15:58 +00:00
"require" : {
2022-10-28 00:45:35 +00:00
"php" : "^8.1",
"ext-pdo": "*",
2019-05-28 19:27:23 +00:00
"ext-json": "*",
2020-06-24 15:50:00 +00:00
"ext-fileinfo": "*",
2020-10-24 19:02:55 +00:00
"flexihash/flexihash" : "^2.0",
"ifixit/php-akismet" : "^1.0",
"google/recaptcha" : "^1.1",
"shish/eventtracer-php" : "^2.0",
"shish/ffsphp" : "^1.0",
"shish/microcrud" : "^2.0",
"shish/microhtml" : "^2.0",
2023-02-01 12:49:42 +00:00
"shish/gqla" : "dev-main",
"enshrined/svg-sanitize" : "^0.16",
2016-05-11 22:27:42 +00:00
2020-10-24 19:02:55 +00:00
"bower-asset/jquery" : "^1.12",
"bower-asset/jquery-timeago" : "^1.5",
"bower-asset/js-cookie" : "^2.1",
"psr/simple-cache" : "^1.0",
2023-02-12 12:26:55 +00:00
"sabre/cache" : "^2.0.1",
"naroga/redis-cache": "dev-master"
2019-05-28 19:27:23 +00:00
},
"require-dev" : {
"phpunit/phpunit" : "^9.0",
2022-10-28 16:33:32 +00:00
"friendsofphp/php-cs-fixer" : "^3.12",
2023-02-03 16:44:16 +00:00
"scrutinizer/ocular": "dev-master",
"phpstan/phpstan": "1.10.x-dev"
2019-05-29 17:23:29 +00:00
},
"suggest": {
"ext-memcache": "memcache caching",
"ext-memcached": "memcached caching",
"ext-apc": "apc caching",
2023-01-11 11:15:26 +00:00
"ext-apcu": "apc caching",
2019-05-29 17:23:29 +00:00
"ext-redis": "redis caching",
"ext-curl": "some extensions",
"ext-ctype": "some extensions",
"ext-json": "some extensions",
"ext-zip": "self-updater extension, bulk import/export",
2019-05-29 17:23:29 +00:00
"ext-zlib": "anti-spam",
"ext-xml": "some extensions",
"ext-gd": "GD-based thumbnailing"
2016-05-11 14:15:58 +00:00
}
}