-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.56 KB
/
Copy pathcomposer.json
File metadata and controls
68 lines (68 loc) · 1.56 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
{
"name": "cyndaron/module-ticketsale",
"description": "Ticketsale module for Cyndaron",
"license": "MIT",
"autoload": {
"psr-4": {
"Cyndaron\\Ticketsale\\": "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/util"
},
{
"type": "vcs",
"url": "https://github.com/Cyndaron/view"
},
{
"type": "vcs",
"url": "https://github.com/Cyndaron/Cyndaron"
},
{
"type": "vcs",
"url": "https://github.com/Cyndaron/module-geelhoed"
},
{
"type": "vcs",
"url": "https://github.com/Cyndaron/module-minecraft"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4",
"components/jquery": "^3.5",
"symfony/http-foundation": "^5.0",
"thecodingmachine/safe": "^1.1",
"cyndaron/module": "^1.0",
"cyndaron/dbal": "^1.0",
"cyndaron/util": "^1.0",
"cyndaron/view": "^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"
]
}
}