-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 2.35 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 2.35 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
{
"name": "really-simple-plugins/simplybookme",
"version": "3.3.1",
"description": "Simply add a booking calendar to your site to schedule bookings, reservations, appointments and to collect payments.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"homepage": "https://simplybook.me/",
"authors": [
{
"name": "Really Simple Plugins",
"email": "beheer@really-simple-plugins.com",
"homepage": "https://really-simple-plugins.com/",
"role": "Organisation"
}
],
"require": {
"php": ">=7.4, <=8.3",
"adbario/php-dot-notation": "*",
"automattic/jetpack-autoloader": "^5",
"nesbot/carbon": "*"
},
"require-dev": {
"phpcompatibility/php-compatibility": "^9.3",
"phpmd/phpmd": "^2.15",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"slevomat/coding-standard": "^8.14",
"squizlabs/php_codesniffer": "^3.9",
"szepeviktor/phpstan-wordpress": "^2.0"
},
"autoload": {
"psr-4": {
"SimplyBook\\": "app",
"SimplyBook\\Bootstrap\\": "bootstrap"
},
"files": [
"helpers.php"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"lint": "vendor/bin/phpcs --report=full",
"lint:report": "vendor/bin/phpcs --report=full --report-file=phpcs-report.txt",
"lint:summary": "vendor/bin/phpcs --report=summary",
"lint:summary:report": "vendor/bin/phpcs --report=summary --report-file=phpcs-report.txt",
"quality": "vendor/bin/phpstan analyse --memory-limit=2048M",
"quality:report": "vendor/bin/phpstan analyse --memory-limit=2048M > phpstan-report.txt",
"quality:diagnose": "vendor/bin/phpstan diagnose --memory-limit=2048M",
"mess": "vendor/bin/phpmd app,bootstrap,simplybook.php ansi phpmd.xml.dist",
"mess:report": "vendor/bin/phpmd app,bootstrap,simplybook.php checkstyle phpmd.xml.dist --reportfile phpmd-checkstyle.xml"
}
}