This repository has been archived by the owner on Aug 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
88 lines (88 loc) · 2.6 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
{
"name": "gctc-ntgc/talent-cloud",
"description": "Codebase for talent.canada.ca",
"license": "MIT",
"require": {
"php": "7.2.*",
"backpack/crud": "^4.0",
"bacon/bacon-qr-code": "^2.0",
"calebporzio/parental": "^0.11.0",
"codezero/laravel-unique-translation": "^3.0",
"doctrine/dbal": "^2.10",
"facade/ignition": "^2.0",
"fideloper/proxy": "^4.1",
"jenssegers/date": "^4.0",
"laravel/framework": "^7.0",
"laravel/tinker": "^2.4",
"laravel/ui": "^2.0",
"mcamara/laravel-localization": "^1.3",
"nunomaduro/collision": "^4.1",
"pragmarx/google2fa-laravel": "^1.2",
"pragmarx/recovery": "^0.2.0",
"rcrowe/twigbridge": "^0.12.0",
"spatie/laravel-translatable": "^4.1",
"twig/twig": "^2.11"
},
"require-dev": {
"backpack/generators": "^2.0",
"barryvdh/laravel-debugbar": "^3.2",
"barryvdh/laravel-ide-helper": "^2.6",
"filp/whoops": "^2.3",
"fzaninotto/faker": "^1.8",
"laracasts/generators": "dev-master",
"mockery/mockery": "^1.2",
"phpunit/php-code-coverage": "^7.0",
"phpunit/phpunit": "^8.5",
"sebastian/global-state": "^3.0",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
],
"files": [
"app/Helpers/Helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"ide-helper": [
"@php artisan clear-compiled",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:models -N -F etc/php/ide_helper_models.php",
"@php artisan ide-helper:meta"
],
"test": "phpunit",
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}