forked from podlove/podlove-publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 2.16 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "podlove/podcast-publisher",
"description": "Podcast Publishing Plugin for WordPress",
"license": "MIT",
"require": {
"php": "^8.0",
"podlove/podlove-timeline": "2.*",
"monolog/monolog": "2.9.*",
"symfony/yaml": "6.0.*",
"symfony/polyfill-mbstring": "1.27.*",
"twig/twig": "3.6.1",
"geoip2/geoip2": "~2.0",
"matomo/device-detector": "6.1.*",
"phpunit/php-timer": "5.0.*",
"podlove/webvtt-parser": "^1.1.6",
"geertw/ip-anonymizer": "^1.1",
"dariuszp/cli-progress-bar": "^1.0",
"league/csv": "9.8.0",
"gajus/dindent": "^2.0"
},
"require-dev": {
"pear/pear_exception": "1.0.*@dev",
"podlove/comment-introspection": "dev-master",
"phpunit/phpunit": "9.6.9",
"bamarni/composer-bin-plugin": "1.4.1"
},
"autoload": {
"classmap": [
"lib/",
"includes/",
"vendor-prefixed/"
],
"exclude-from-classmap": [
"/vendor/twig"
]
},
"config": {
"platform": {
"php": "8.0.29"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"prefix-dependencies": [
"composer prefix-twig",
"composer prefix-matomo",
"composer prefix-monolog",
"composer prefix-psr"
],
"prefix-twig": [
"@php ./vendor-bin/php-scoper/vendor/humbug/php-scoper/bin/php-scoper add-prefix --prefix=PodlovePublisher_Vendor --output-dir=./vendor-prefixed/twig --config=config/php-scoper/twig.inc.php --force"
],
"prefix-matomo": [
"@php ./vendor-bin/php-scoper/vendor/humbug/php-scoper/bin/php-scoper add-prefix --prefix=PodlovePublisher_Vendor --output-dir=./vendor-prefixed/matomo --config=config/php-scoper/matomo.inc.php --force"
],
"prefix-monolog": [
"@php ./vendor-bin/php-scoper/vendor/humbug/php-scoper/bin/php-scoper add-prefix --prefix=PodlovePublisher_Vendor --output-dir=./vendor-prefixed/monolog --config=config/php-scoper/monolog.inc.php --force"
],
"prefix-psr": [
"@php ./vendor-bin/php-scoper/vendor/humbug/php-scoper/bin/php-scoper add-prefix --prefix=PodlovePublisher_Vendor --output-dir=./vendor-prefixed/psr --config=config/php-scoper/psr.inc.php --force"
]
}
}