-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
28 lines (27 loc) · 1.02 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
{
"name": "adaures/podcast-persons-taxonomy",
"description": "Generate PHP translation files for CodeIgniter4 from the podcast-namespace's Persons Taxonomy json files.",
"homepage": "https://code.castopod.org/adaures/podcast-persons-taxonomy",
"license": "MIT",
"authors": [
{
"name": "Benjamin Bellamy",
"email": "[email protected]",
"homepage": "https://code.castopod.org/benjamin"
},
{
"name": "Yassine Doghri",
"email": "[email protected]",
"homepage": "https://code.castopod.org/yassine"
}
],
"autoload": {
"psr-4": {
"AdAures\\PodcastPersonsTaxonomy\\": "src/"
}
},
"scripts": {
"post-install-cmd": "@php src/ReversedTaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-en.json > src/ReversedTaxonomy.php",
"post-update-cmd": "@php src/ReversedTaxonomyGenerate.php https://raw.githubusercontent.com/Podcastindex-org/podcast-namespace/main/taxonomy-en.json > src/ReversedTaxonomy.php"
}
}