-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
97 lines (97 loc) · 2.68 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "framasoft/framadate",
"description": "Application to facilitate the schedule of events or classic polls",
"homepage": "https://framadate.org/",
"keywords": [
"poll",
"framadate"
],
"version": "0.9.0",
"license": "CECILL-B",
"type": "project",
"support": {
"issues": "https://framagit.org/framasoft/framadate/issues"
},
"authors": [
{
"name": "Thomas CITHAREL",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "JosephK",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Olivier PEREZ",
"email": "[email protected]",
"role": "Former maintainer"
},
{
"name": "Antonin MURTIN",
"email": "[email protected]",
"role": "Former developper"
},
{
"name": "Simon LEBLANC",
"role": "Former developper",
"email": "[email protected]"
},
{
"name": "Pierre-Yves GOSSET",
"role": "Former developper",
"email": "[email protected]"
},
{
"name": "Guilhem BORGHESI",
"role": "Studs developper",
"email": "[email protected]"
},
{
"name": "Raphaël DROZ",
"role": "Studs developper",
"email": "[email protected]"
}
],
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -not -path './tests/integration/vendor/*' -print0 | xargs -0 -n1 php -l"
},
"require": {
"php": ">=7.3.0",
"ext-pdo": "*",
"ext-json": "*",
"ext-intl": "*",
"smarty/smarty": "^4.0",
"o80/i18n": "dev-develop",
"phpmailer/phpmailer": "~6.2",
"ircmaxell/password-compat": "dev-master",
"roave/security-advisories": "dev-master",
"erusev/parsedown": "^1.7",
"egulias/email-validator": "^3.1",
"sabre/vobject": "~4.1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "^3.2",
"vimeo/psalm": "^4.15"
},
"repositories": [
{
"type": "git",
"url": "https://framagit.org/framasoft/framadate/o80-i18n"
}
],
"autoload": {
"psr-4": {
"Framadate\\": "app/classes/Framadate/"
}
},
"config": {
"platform": {
"php": "7.3.0"
}
}
}