-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcomposer.json
81 lines (81 loc) · 2.51 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "xtendify/simple-calendar",
"description": "Add Google Calendar events to your WordPress site.",
"homepage": "https://simplecalendar.io",
"type": "wordpress-plugin",
"license": "GPLv2+",
"keywords": [
"wordpress",
"plugin",
"calendar",
"google calendar"
],
"authors": [
{
"name": "Simple Calendar",
"email": "[email protected]",
"homepage": "https://simplecalendar.io/"
}
],
"support": {
"source": "https://github.com/Xtendify/Simple-Calendar/",
"issues": "https://github.com/Xtendify/Simple-Calendar/issues",
"forum": "https://wordpress.org/support/plugin/google-calendar-events"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.3.0",
"ext-curl": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*",
"composer/installers": "2.3.0",
"google/apiclient": "2.13.1",
"nesbot/carbon": "2.72.5",
"erusev/parsedown": "1.7.4",
"mexitek/phpcolors": "dev-master",
"guzzlehttp/guzzle": "7.9.2",
"instituteweb/composer-scripts": "1.1.0"
},
"autoload": {
"files": [
"vendor/guzzlehttp/guzzle/src/functions_include.php",
"vendor/guzzlehttp/promises/src/functions_include.php"
]
},
"extra": {
"google/apiclient-services": [
"Calendar",
"Drive"
]
},
"config": {
"platform": {
"php": "7.3"
},
"allow-plugins": {
"composer/installers": true
}
},
"scripts": {
"post-install-cmd": [
"Google\\Task\\Composer::cleanup",
"@prefix-dependencies"
],
"post-update-cmd": [
"Google\\Task\\Composer::cleanup",
"@prefix-dependencies"
],
"prefix-dependencies": [
"rm -rf php-scoper && mkdir php-scoper",
"cd php-scoper && composer init -q --name \"calendar/php_scoper\" && composer require humbug/php-scoper",
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"./php-scoper/vendor/bin/php-scoper add --output-dir=./third-party --force",
"cp composer.include.dump-autoload includes/composer.json && cd includes && composer dump-autoload --no-plugins -vvv --classmap-authoritative --no-interaction && rm composer.json",
"cp composer.third-party.dump-autoload third-party/composer.json && cd third-party && composer dump-autoload -vvv --no-plugins --classmap-authoritative --no-interaction && rm composer.json",
"cp vendor/composer/autoload_files.php third-party/vendor/composer/autoload_files.php",
"rm -rf php-scoper"
]
}
}