2020-05-27 18:46:16 +02:00
|
|
|
{
|
2021-04-23 15:42:54 +00:00
|
|
|
"name": "podlibre/castopod-host",
|
2022-04-05 16:57:10 +00:00
|
|
|
"version": "1.0.0-beta12",
|
2020-06-10 15:00:12 +00:00
|
|
|
"type": "project",
|
2022-02-19 16:06:11 +00:00
|
|
|
"description": "Castopod is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
|
2020-06-10 15:00:12 +00:00
|
|
|
"homepage": "https://castopod.org",
|
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
"require": {
|
2021-05-14 17:59:35 +00:00
|
|
|
"php": "^8.0",
|
2022-03-04 14:33:48 +00:00
|
|
|
"codeigniter4/framework": "^4",
|
2021-12-20 16:31:03 +00:00
|
|
|
"james-heinrich/getid3": "^2.0.x-dev",
|
2021-04-02 17:20:02 +00:00
|
|
|
"whichbrowser/parser": "^v2.1.1",
|
2022-03-04 14:33:48 +00:00
|
|
|
"geoip2/geoip2": "^v2.12.2",
|
2020-07-31 16:05:10 +00:00
|
|
|
"myth/auth": "dev-develop",
|
2022-02-02 17:01:19 +00:00
|
|
|
"league/commonmark": "^2.2",
|
2021-04-02 17:20:02 +00:00
|
|
|
"vlucas/phpdotenv": "^v5.3.0",
|
2021-10-26 15:54:56 +00:00
|
|
|
"league/html-to-markdown": "^v5.0.1",
|
2021-04-02 17:20:02 +00:00
|
|
|
"opawg/user-agents-php": "^v1.0",
|
2022-02-19 16:06:11 +00:00
|
|
|
"adaures/ipcat-php": "^1.0",
|
|
|
|
"adaures/podcast-persons-taxonomy": "^1.0",
|
2021-04-02 17:20:02 +00:00
|
|
|
"phpseclib/phpseclib": "~2.0.30",
|
2021-05-12 14:00:25 +00:00
|
|
|
"michalsn/codeigniter4-uuid": "dev-develop",
|
2021-10-26 15:54:56 +00:00
|
|
|
"essence/essence": "^3.5.4",
|
2022-03-04 14:33:48 +00:00
|
|
|
"codeigniter4/settings": "^v1.0",
|
2021-11-12 16:31:35 +00:00
|
|
|
"chrisjean/php-ico": "^1.0",
|
|
|
|
"melbahja/seo": "^2.0"
|
2020-06-10 15:00:12 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2022-03-04 14:33:48 +00:00
|
|
|
"mikey179/vfsstream": "v1.6.10",
|
|
|
|
"phpunit/phpunit": "^9.5.16",
|
|
|
|
"captainhook/captainhook": "^5.10.7",
|
|
|
|
"symplify/easy-coding-standard": "^10.1",
|
|
|
|
"phpstan/phpstan": "^1.4",
|
|
|
|
"rector/rector": "^0.12.16",
|
|
|
|
"symplify/coding-standard": "^10.1"
|
2021-04-02 17:20:02 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"App\\": "app",
|
|
|
|
"Config\\": "app/Config"
|
|
|
|
},
|
|
|
|
"exclude-from-classmap": [
|
|
|
|
"**/Database/Migrations/**"
|
|
|
|
]
|
2020-06-10 15:00:12 +00:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Tests\\Support\\": "tests/_support"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
2021-05-06 14:00:48 +00:00
|
|
|
"test": "vendor/bin/phpunit",
|
2021-05-19 16:35:13 +00:00
|
|
|
"analyse": "vendor/bin/phpstan analyse --ansi",
|
2021-05-06 14:00:48 +00:00
|
|
|
"rector": "vendor/bin/rector process --dry-run --ansi",
|
|
|
|
"rector:fix": "vendor/bin/rector process --ansi",
|
2021-05-19 16:35:13 +00:00
|
|
|
"style": "vendor/bin/ecs check --ansi",
|
|
|
|
"style:fix": "vendor/bin/ecs check --fix --ansi",
|
2020-10-06 15:39:27 +00:00
|
|
|
"post-install-cmd": [
|
2022-02-19 16:06:11 +00:00
|
|
|
"@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/adaures/ipcat-php/src/IpDbGenerate.php > vendor/adaures/ipcat-php/src/IpDb.php",
|
|
|
|
"@php vendor/adaures/podcast-persons-taxonomy/src/TaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-en.json > modules/Admin/Language/en/PersonsTaxonomy.php",
|
|
|
|
"@php vendor/adaures/podcast-persons-taxonomy/src/TaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-fr.json > modules/Admin/Language/fr/PersonsTaxonomy.php",
|
|
|
|
"@php vendor/adaures/podcast-persons-taxonomy/src/ReversedTaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-en.json > vendor/adaures/podcast-persons-taxonomy/src/ReversedTaxonomy.php"
|
2020-10-06 15:39:27 +00:00
|
|
|
],
|
2020-06-10 15:00:12 +00:00
|
|
|
"post-update-cmd": [
|
2020-10-06 15:39:27 +00:00
|
|
|
"@composer dump-autoload",
|
2022-02-19 16:06:11 +00:00
|
|
|
"@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/adaures/ipcat-php/src/IpDbGenerate.php > vendor/adaures/ipcat-php/src/IpDb.php",
|
|
|
|
"@php vendor/adaures/podcast-persons-taxonomy/src/TaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-en.json > modules/Admin/Language/en/PersonsTaxonomy.php",
|
|
|
|
"@php vendor/adaures/podcast-persons-taxonomy/src/TaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-fr.json > modules/Admin/Language/fr/PersonsTaxonomy.php",
|
|
|
|
"@php vendor/adaures/podcast-persons-taxonomy/src/ReversedTaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-en.json > vendor/adaures/podcast-persons-taxonomy/src/ReversedTaxonomy.php"
|
2021-05-12 14:00:25 +00:00
|
|
|
]
|
|
|
|
},
|
2020-06-10 15:00:12 +00:00
|
|
|
"support": {
|
2022-02-20 13:23:57 +00:00
|
|
|
"source": "https://code.castopod.org/adaures/castopod.git",
|
2021-04-23 15:42:54 +00:00
|
|
|
"discord": "https://castopod.org/discord"
|
2020-07-31 16:05:10 +00:00
|
|
|
},
|
|
|
|
"prefer-stable": true,
|
2022-01-23 17:54:08 +00:00
|
|
|
"config": {
|
|
|
|
"allow-plugins": {
|
|
|
|
"phpstan/extension-installer": true
|
|
|
|
}
|
|
|
|
}
|
2020-05-27 18:46:16 +02:00
|
|
|
}
|