forked from VATSIM-UK/uk-controller-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (50 loc) · 1.37 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
{
"name": "vatsim-uk/uk-controller-api",
"description": "The web api backend to the UK Controller Plugin.",
"keywords": ["vatsim", "uk", "ukcp", "uk-controller-api", "controller", "vatuk", "plugin"],
"license": "GPL 3.0",
"type": "project",
"require": {
"php": "^7.3",
"ext-json": "*",
"ext-curl": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^6.3",
"bugsnag/bugsnag-laravel": "^2.17",
"predis/predis": "~1.0",
"laravel/passport": "^7.2",
"laravel/framework": "^7.0",
"beyondcode/laravel-websockets": "^1.4",
"knplabs/github-api": "^2.12",
"php-http/guzzle6-adapter": "^1.1",
"nesbot/carbon": "^2.32",
"maatwebsite/excel": "^3.1"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.3"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/",
"database/seeds",
"database/migrations"
],
"psr-4": {
"App\\": ["app/" ,"tests/app/"]
}
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
},
"minimum-stability": "dev",
"prefer-stable": true
}