forked from alextselegidis/easyappointments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (92 loc) · 3.16 KB
/
Copy pathcomposer.json
File metadata and controls
92 lines (92 loc) · 3.16 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": "alextselegidis/easyappointments",
"description": "Open Source Web Scheduler",
"version": "1.5.2",
"homepage": "https://easyappointments.org",
"type": "project",
"license": "GPL-3.0",
"authors": [
{
"name": "Alex Tselegidis",
"email": "alextselegidis@gmail.com"
}
],
"support": {
"issues": "https://github.com/alextselegidis/easyappointments/issues",
"forum": "https://groups.google.com/forum/#!forum/easy-appointments",
"wiki": "https://easyappointments.org/docs",
"source": "https://github.com/alextselegidis/easyappointments"
},
"keywords": [
"calendar",
"scheduler",
"appointments",
"events",
"dates",
"google",
"services"
],
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-gd": "*",
"ext-simplexml": "*",
"ext-fileinfo": "*",
"altcha-org/altcha": "^1.0",
"ezyang/htmlpurifier": "^4.19",
"google/apiclient": "^2.18.4",
"gregwar/captcha": "^1.3.0",
"guzzlehttp/guzzle": "^7.10.0",
"jsvrcek/ics": "^0.8.6",
"monolog/monolog": "^3.9.0",
"phpmailer/phpmailer": "^7.0",
"sabre/vobject": "^4.5.7",
"symfony/finder": "^6.4"
},
"require-dev": {
"phpunit/phpunit": "^12.4.2"
},
"scripts": {
"pre-autoload-dump": "Google\\Task\\Composer::cleanup",
"test": "APP_ENV=testing php vendor/bin/phpunit",
"post-install-cmd": "@cleanup-vendor",
"post-update-cmd": "@cleanup-vendor",
"cleanup-vendor": [
"find vendor -type f -name '*.md' -delete",
"find vendor -type f -name 'CHANGELOG*' -delete",
"find vendor -type f -name 'UPGRADING*' -delete",
"find vendor -type f -name 'CONTRIBUTING*' -delete",
"find vendor -type f -name '.gitignore' -delete",
"find vendor -type f -name '.gitattributes' -delete",
"find vendor -type f -name 'phpunit.xml*' -delete",
"find vendor -type f -name 'phpstan*' -delete",
"find vendor -type f -name '.php-cs-fixer*' -delete",
"find vendor -type d -name 'tests' -exec rm -rf {} + 2>/dev/null || true",
"find vendor -type d -name 'Tests' -exec rm -rf {} + 2>/dev/null || true",
"find vendor -type d -name 'test' -exec rm -rf {} + 2>/dev/null || true",
"find vendor -type d -name 'docs' -exec rm -rf {} + 2>/dev/null || true",
"find vendor -type d -name 'doc' -exec rm -rf {} + 2>/dev/null || true",
"find vendor -type d -name 'examples' -exec rm -rf {} + 2>/dev/null || true"
]
},
"extra": {
"google/apiclient-services": [
"Calendar"
]
},
"autoload": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"preferred-install": "dist",
"sort-packages": true,
"apcu-autoloader": true
}
}