This repository has been archived by the owner on Jun 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.43 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
{
"name": "nekofar/ganjoor-api",
"description": "Basic implementation of GraphQL using PHP based on Ganjoor API",
"license": [
"MIT"
],
"type": "project",
"keywords": [
"php",
"graphql",
"api",
"ganjoor"
],
"authors": [
{
"name": "Milad Nekofar",
"email": "milad@nekofar.com",
"homepage": "http://milad.nekofar.com"
}
],
"homepage": "http://github.com/nekofar/ganjoor-api",
"support": {
"issues": "http://github.com/nekofar/ganjoor-api/issues"
},
"require": {
"ext-pdo": "*",
"cakephp/collection": "4.4.12",
"j4mie/idiorm": "1.5.8",
"leocavalcante/siler": "1.7.9",
"overblog/dataloader-php": "0.7.0",
"vlucas/phpdotenv": "5.5.0",
"webonyx/graphql-php": "15.2.4"
},
"require-dev": {
"ergebnis/composer-normalize": "2.30.2",
"nekofar/dev-tools": "2.1.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"src/bootstrap.php"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"composer/installers": true,
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
},
"extra": {
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
}
},
"scripts": {
"start": "docker compose up"
}
}