This repository has been archived by the owner on Sep 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
98 lines (98 loc) · 2.91 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "gumbo-millennium/e-voting",
"type": "project",
"description": "Online Voting, what could go wrong!?",
"keywords": [
"coronavirus",
"covid-19",
"voting",
"e-voting",
"online voting"
],
"license": "AGPL-3.0-only",
"require": {
"php": "^7.4||^8.0",
"doctrine/dbal": "^2.12",
"fideloper/proxy": "^4.2",
"fruitcake/laravel-cors": "^2.0",
"giggsey/libphonenumber-for-php": "^8.12",
"google/cloud-error-reporting": "^0.18.2",
"google/cloud-logging": "^1.21",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^8.0",
"livewire/livewire": "^2.3",
"messagebird/php-rest-api": "^1.19",
"owenvoke/blade-fontawesome": "^1.10",
"phpoffice/phpspreadsheet": "^1.15",
"spomky-labs/otphp": "^10.0",
"superbalist/laravel-google-cloud-storage": "^2.2"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.8",
"facade/ignition": "^2.3.6",
"fakerphp/faker": "^1.14",
"laravel/tinker": "^2.5",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^5.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpunit/phpunit": "^9.3",
"slevomat/coding-standard": "^6.4"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"contribute": [
"Composer\\Config::disableProcessTimeout",
"test -f .env || cp .env.dev .env",
"docker-compose up -d",
"composer install --no-suggest --no-progress",
"yarn install",
"@php artisan key:generate",
"@php artisan migrate --seed",
"yarn build"
],
"lint": [
"Composer\\Config::disableProcessTimeout",
"parallel-lint --blame app bootstrap config database public resources routes tests",
"phpcs"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"test": [
"phpunit"
],
"cs": [
"phpcbf"
]
}
}