forked from wp-plugins/all-in-one-event-calendar
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 4.06 KB
/
Copy pathcomposer.json
File metadata and controls
90 lines (90 loc) · 4.06 KB
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
82
83
84
85
86
87
88
89
90
{
"name": "digitaldonkey/open-source-event-calendar",
"type": "wordpress-plugin",
"description": "Open Source Event Calendar WordPress Plugin",
"minimum-stability": "dev",
"prefer-stable" : true,
"require": {
"cweagans/composer-patches": "~2.0.0",
"ext-curl": "*",
"ext-json": "*",
"kigkonsult/icalcreator": "^2.41",
"louis1021/sg-i-calendar": "dev-master",
"php": ">=8.2",
"twig/twig": "^3.23",
"wikimedia/less.php": "^5.5",
"rlanvin/php-rrule": "^2.6"
},
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"Osec\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Osec\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "digitaldonkey",
"email": "tho@donkeymedia.eu"
}
],
"scripts": {
"grumphp": "grumphp",
"phpcs": "phpcs --standard=phpcs.xml --runtime-set testVersion 8.2-",
"phpcs-config-show": "phpcs --standard=phpcs.xml --config-show",
"phpcbf": "phpcbf --standard=phpcs.xml --runtime-set testVersion 8.2-",
"phpcs-warnings": "phpcs --warning-severity=1 --runtime-set testVersion 8.2- --standard=phpcs.xml",
"post-install-cmd": "[ $COMPOSER_DEV_MODE -eq 0 ] || \"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility,vendor/phpcsstandards/phpcsextra,vendor/phpcsstandards/phpcsutils,vendor/wp-coding-standards/wpcs/WordPress,vendor/wp-coding-standards/wpcs/WordPress-Core,vendor/wp-coding-standards/wpcs/WordPress-Docs,vendor/wp-coding-standards/wpcs/WordPress-Extra,vendor/phpcsstandards/phpcsextra,vendor/phpcompatibility/php-compatibility,vendor/phpcompatibility/phpcompatibility-wp,vendor/phpcompatibility/phpcompatibility-paragonie,vendor/phpcsstandards/phpcsextra,vendor/plugin-check/vendor/plugin-check/phpcs-sniffs/PluginCheck",
"post-update-cmd" : "[ $COMPOSER_DEV_MODE -eq 0 ] || \"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility,vendor/phpcsstandards/phpcsextra,vendor/phpcsstandards/phpcsutils,vendor/wp-coding-standards/wpcs/WordPress,vendor/wp-coding-standards/wpcs/WordPress-Core,vendor/wp-coding-standards/wpcs/WordPress-Docs,vendor/wp-coding-standards/wpcs/WordPress-Extra,vendor/phpcsstandards/phpcsextra,vendor/phpcompatibility/php-compatibility,vendor/phpcompatibility/phpcompatibility-wp,vendor/phpcompatibility/phpcompatibility-paragonie,vendor/phpcsstandards/phpcsextra,vendor/plugin-check/vendor/plugin-check/phpcs-sniffs/PluginCheck"
},
"require-dev": {
"phpcompatibility/phpcompatibility-wp": "^3.0.0@dev",
"phpro/grumphp": "^2.18",
"phpunit/phpunit": "^9.6",
"roave/security-advisories": "dev-latest",
"symfony/debug-bundle": "^7.3",
"wp-cli/wp-cli-bundle": "^2.12",
"yoast/phpunit-polyfills": "^4.0.0",
"phpcompatibility/php-compatibility": "*",
"phpcsstandards/phpcsextra": "*",
"phpcsstandards/phpcsutils": "*",
"wpackagist-plugin/plugin-check": "^1.8",
"wp-coding-standards/wpcs": "^3.3"
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"phpro/grumphp": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"repositories":[
{
"name": "wpackagist",
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"extra": {
"patches": {
"louis1021/sg-i-calendar": {
"PHP 8.1.x compatibility fixes": "composer-patches/louis1021--sg-i-calendar-8.1.patch",
"PHP 8.2.x compatibility fixes": "composer-patches/louis1021--sg-i-calendar-8.2.patch"
}
},
"installer-paths": {
"vendor/{$name}": [
"type:wordpress-plugin"
]
}
}
}