-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.93 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
{
"name": "ytgov/account-email-verifier",
"description": "Email verification step during setup of Government of Yukon online services account",
"license": "Apache 2.0",
"type": "project",
"repositories": [
{
"type": "package",
"package": {
"name": "ytgov/yukon-ca-design-system",
"version": "1.0.0",
"type": "laravel-library",
"source": {
"url": "http://app-cms-git01.gov.yk.ca/design/yukon.ca-design-system.git",
"type": "git",
"reference": "de-duplication"
},
"require": {
"composer/installers": "~1.0"
}
}
}
],
"require": {
"php": "^8.1",
"auth0/auth0-php": "^8.0",
"guzzlehttp/guzzle": "^7.4",
"illuminate/mail": "^10.0",
"laravel/lumen-framework": "^10.0",
"ytgov/yukon-ca-design-system": "^1.0"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^10.4.2"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"secure-http": false,
"optimize-autoloader": true,
"allow-plugins": {
"composer/installers": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"extra": {
"installer-paths": {
"public/libraries/{$name}": ["ytgov/yukon-ca-design-system"]
}
}
}