-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
52 lines (52 loc) · 1.45 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mauricerenck/podcaster",
"version": "3.2.11",
"description": "A Kirby Podcast Plugin",
"homepage": "https://github.com/mauricerenck/kirby-podcaster",
"type": "kirby-plugin",
"license": "MIT",
"authors": [
{
"name": "Maurice Renck",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"mauricerenck\\Podcaster\\": "app"
},
"classmap": [
"app"
]
},
"require": {
"getkirby/composer-installer": "^1.2",
"james-heinrich/getid3": "^v1.9",
"matomo/matomo-php-tracker": "^3.2",
"php": ">=8.0.0"
},
"require-dev": {
"getkirby/cms": "^4",
"phpunit/phpunit": "^9.5"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"scripts": {
"start": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8000 kirby/router.php"
],
"test": "vendor/bin/phpunit --testdox --colors=always tests",
"build-test-package": "git archive HEAD -o podcaster.zip --worktree-attributes",
"build-composer": "composer install --no-dev --optimize-autoloader",
"build-release": [
"composer test",
"composer install --no-dev --optimize-autoloader",
"npm run build"
]
}
}