-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.69 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
{
"name": "rbwebdesigns/quizzerino",
"description": "A quiz app in the browser",
"homepage": "https://quiz.rbwebdesigns.co.uk/",
"keywords": ["game", "quiz", "multiplayer", "web browser", "websockets", "php"],
"type": "project",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Ricky Bertram",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/rbertram90/quizzerino-f1-questions-source.git"
},
{
"type": "vcs",
"url": "https://github.com/rbertram90/quizzerino-open-trivia-source.git"
},
{
"type": "vcs",
"url": "https://github.com/rbertram90/quizzerino-installer.git"
}
],
"require": {
"cboden/ratchet": "^0.4.1",
"rbwebdesigns/quizzerino-installer": "dev-master",
"rbwebdesigns/quizzerino-open-trivia-db-source": "dev-master",
"ext-json": "*",
"symfony/dependency-injection": "^7.0",
"symfony/config": "^7.0",
"symfony/yaml": "^7.0",
"vlucas/phpdotenv": "^5.0",
"rbwebdesigns/quizzerino-formula1-db-source": "dev-master"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"rbwebdesigns\\quizzerino\\": "app/",
"quizzerino\\": "quizzes/"
}
},
"extra": {
"installer-types": ["quizzerino-question-source"],
"installer-paths": {
"quizzes/{$name}/": ["type:quizzerino-question-source"]
}
},
"config": {
"allow-plugins": {
"rbwebdesigns/quizzerino-installer": true
}
}
}