forked from wielebenwir/commonsbooking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (91 loc) · 2.48 KB
/
composer.json
File metadata and controls
92 lines (91 loc) · 2.48 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
91
92
{
"name": "wielebenwir/commonsbooking",
"description": "~",
"homepage": "https://commonsbooking.org",
"version": "2.10.9",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"platform-check": false,
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"CommonsBooking\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CommonsBooking\\Tests\\": "tests/php/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wielebenwir/cmb-field-select2"
},
{
"type": "vcs",
"url": "https://github.com/wielebenwir/cmb2-field-ajax-search"
}
],
"require": {
"php": ">=7.4",
"cmb2/cmb2": "^2.10.1",
"mustardbees/cmb-field-select2": "^3.0.6",
"geocoder-php/nominatim-provider": "^5.7",
"php-http/curl-client": "^2.3",
"nyholm/psr7": "^1.8",
"opis/json-schema": "^2.3.0",
"scssphp/scssphp": "^1.11.1",
"ext-json": "*",
"ext-curl": "*",
"symfony/cache": "^5.4.30",
"symfony/service-contracts": "^v2.5.2",
"eluceo/ical": "~2.14.0",
"phpmailer/phpmailer": "^7.0.0",
"ed-itsolutions/cmb2-field-ajax-search": "v2.0.1"
},
"require-dev": {
"mockery/mockery": "^1.6.6",
"phpunit/phpunit": "^9.6.21",
"yoast/phpunit-polyfills": "^4.0.0",
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.4",
"slope-it/clock-mock": "^0.4.0",
"phpunit/php-code-coverage": "^9.2.32",
"myclabs/deep-copy": "^1.12.0",
"phpstan/phpstan": "^2.1",
"szepeviktor/phpstan-wordpress": "^2.0",
"phpstan/extension-installer": "^1.4",
"ext-libxml": "*",
"ext-dom": "*"
},
"scripts": {
"post-install-cmd": [
"@prefix-namespaces"
],
"post-update-cmd": [
"@prefix-namespaces"
],
"prefix-namespaces": [
"sh -c 'test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L -C - https://github.com/BrianHenryIE/strauss/releases/download/0.26.5/strauss.phar'",
"@php bin/strauss.phar --info",
"@composer dump-autoload"
]
},
"scripts-descriptions": {
"prefix-namespaces": "Copy the required dependencies to vendor-prefixed and edit the PHP namespaces to begin with CommonsBooking."
},
"extra": {
"strauss": {
"include_root_autoload": true
}
}
}