This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/composer.json

89 lines
2.1 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": {
2024-08-31 16:05:18 +00:00
"php": "8.2.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" : {
2024-08-31 16:05:18 +00:00
"php" : "^8.2",
"ext-pdo": "*",
2019-05-28 19:27:23 +00:00
"ext-json": "*",
2020-06-24 15:50:00 +00:00
"ext-fileinfo": "*",
2024-01-01 15:00:54 +00:00
"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",
2024-02-25 16:50:10 +00:00
"shish/gqla": "^1.0",
2024-01-01 15:00:54 +00:00
"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",
"thecodingmachine/safe": "2.5.0"
2019-05-28 19:27:23 +00:00
},
"require-dev" : {
2024-08-31 16:05:18 +00:00
"phpunit/phpunit" : "^11.0",
"friendsofphp/php-cs-fixer" : "^3.64",
"phpstan/phpstan": "^1.12",
"thecodingmachine/phpstan-safe-rule": "^1.2"
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"
2024-02-27 00:51:16 +00:00
},
"scripts": {
"check": [
"@format",
"@stan",
"@test"
],
"format": "php-cs-fixer fix",
"stan": "phpstan analyse --memory-limit 1G -c tests/phpstan.neon",
"test": "phpunit --config tests/phpunit.xml"
}
2016-05-11 14:15:58 +00:00
}