-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.73 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
{
"name": "cyndaron/module-geelhoed",
"description": "Sportschool Geelhoed module for Cyndaron",
"license": "MIT",
"autoload": {
"psr-4": {
"Cyndaron\\Geelhoed\\": "src/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Cyndaron/module"
},
{
"type": "vcs",
"url": "https://github.com/Cyndaron/dbal"
},
{
"type": "vcs",
"url": "https://github.com/Cyndaron/view"
},
{
"type": "vcs",
"url": "https://github.com/Cyndaron/util"
},
{
"type": "vcs",
"url": "https://github.com/Cyndaron/Cyndaron"
},
{
"type": "vcs",
"url": "https://github.com/Cyndaron/module-minecraft"
},
{
"type": "vcs",
"url": "https://github.com/Cyndaron/module-ticketsale"
},
{
"type": "vcs",
"url": "https://github.com/Cyndaron/request"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4",
"mollie/mollie-api-php": "^2.0",
"phpoffice/phpspreadsheet": "^1.12",
"components/jquery": "^3.5",
"symfony/http-foundation": "^5.0",
"thecodingmachine/safe": "^1.1",
"cyndaron/module": "^1.0",
"cyndaron/dbal": "^1.0",
"cyndaron/view": "^1.0",
"cyndaron/util": "^1.0"
},
"require-dev": {
"cyndaron/cyndaron": "dev-master",
"roave/security-advisories": "dev-master",
"phan/phan": "^3.0",
"thecodingmachine/phpstan-safe-rule": "^1.0",
"phpstan/phpstan": "^0.12.42",
"friendsofphp/php-cs-fixer": "^2.16"
},
"scripts": {
"phpstan": [
"vendor/bin/phpstan analyse src --level 8"
],
"cscheck": [
"vendor/bin/php-cs-fixer fix src/ --allow-risky=yes --dry-run --diff"
]
}
}