mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00

# [1.0.0-alpha.54](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-alpha.53...v1.0.0-alpha.54) (2021-05-03) ### Features * set app parameter forceGlobalSecureRequests = true forcing requests to go through https ([d9dff1b](d9dff1b8bf
)) * **ux:** remove admin dashboard and redirect directly to podcast list ([27c48b8](27c48b8fa9
)) * add cache to ActivityPub sql queries + cache activity and note pages ([2d297f4](2d297f45b3
)) ### Performance Improvements * **cache:** update CI4 to use cache's deleteMatching method ([54b84f9](54b84f9684
)) * **docker:** add redis caching service for development ([05ace8c](05ace8cff2
))
77 lines
3.6 KiB
JSON
77 lines
3.6 KiB
JSON
{
|
|
"name": "podlibre/castopod-host",
|
|
"version": "1.0.0-alpha54",
|
|
"type": "project",
|
|
"description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
|
|
"homepage": "https://castopod.org",
|
|
"license": "AGPL-3.0-or-later",
|
|
"require": {
|
|
"php": "^7.3||^8.0",
|
|
"james-heinrich/getid3": "~2.0.0-dev",
|
|
"whichbrowser/parser": "^v2.1.1",
|
|
"geoip2/geoip2": "^v2.11.0",
|
|
"myth/auth": "dev-develop",
|
|
"codeigniter4/codeigniter4": "dev-develop",
|
|
"league/commonmark": "^1.6.0",
|
|
"vlucas/phpdotenv": "^v5.3.0",
|
|
"league/html-to-markdown": "^4.10",
|
|
"opawg/user-agents-php": "^v1.0",
|
|
"podlibre/ipcat": "^v1.0",
|
|
"podlibre/podcast-namespace": "^v1.0.6",
|
|
"phpseclib/phpseclib": "~2.0.30",
|
|
"michalsn/codeigniter4-uuid": "^v1.0.0",
|
|
"essence/essence": "^3.5.4"
|
|
},
|
|
"require-dev": {
|
|
"mikey179/vfsstream": "^v1.6.8",
|
|
"phpunit/phpunit": "^9.5.1",
|
|
"squizlabs/php_codesniffer": "3.5.8"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app",
|
|
"Config\\": "app/Config"
|
|
},
|
|
"exclude-from-classmap": [
|
|
"**/Database/Migrations/**"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\Support\\": "tests/_support"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit",
|
|
"post-install-cmd": [
|
|
"@php vendor/opawg/user-agents-php/src/UserAgentsGenerate.php > vendor/opawg/user-agents-php/src/UserAgents.php",
|
|
"@php vendor/opawg/user-agents-php/src/UserAgentsRSSGenerate.php > vendor/opawg/user-agents-php/src/UserAgentsRSS.php",
|
|
"@php vendor/podlibre/ipcat/IpDbGenerate.php > vendor/podlibre/ipcat/IpDb.php",
|
|
"@php vendor/podlibre/podcast-namespace/src/TaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-en.json > app/Language/en/PersonsTaxonomy.php",
|
|
"@php vendor/podlibre/podcast-namespace/src/TaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-fr.json > app/Language/fr/PersonsTaxonomy.php",
|
|
"@php vendor/podlibre/podcast-namespace/src/ReversedTaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-en.json > vendor/podlibre/podcast-namespace/src/ReversedTaxonomy.php"
|
|
],
|
|
"post-update-cmd": [
|
|
"@composer dump-autoload",
|
|
"@php vendor/opawg/user-agents-php/src/UserAgentsGenerate.php > vendor/opawg/user-agents-php/src/UserAgents.php",
|
|
"@php vendor/opawg/user-agents-php/src/UserAgentsRSSGenerate.php > vendor/opawg/user-agents-php/src/UserAgentsRSS.php",
|
|
"@php vendor/podlibre/ipcat/IpDbGenerate.php > vendor/podlibre/ipcat/IpDb.php",
|
|
"@php vendor/podlibre/podcast-namespace/src/TaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-en.json > app/Language/en/PersonsTaxonomy.php",
|
|
"@php vendor/podlibre/podcast-namespace/src/TaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-fr.json > app/Language/fr/PersonsTaxonomy.php",
|
|
"@php vendor/podlibre/podcast-namespace/src/ReversedTaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-en.json > vendor/podlibre/podcast-namespace/src/ReversedTaxonomy.php"
|
|
]
|
|
},
|
|
"support": {
|
|
"source": "https://code.podlibre.org/podlibre/castopod-host.git",
|
|
"discord": "https://castopod.org/discord"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"repositories": [
|
|
{
|
|
"type": "vcs",
|
|
"url": "https://code.podlibre.org/podlibre/castopod-host.git"
|
|
}
|
|
]
|
|
}
|