-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.93 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.93 KB
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
{
"name": "quidprobros/worth-the-weight.com",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/paxperscientiam/ignition/"
}
],
"autoload": {
"psr-4": {
"App\\": "./Application/app/"
},
"files": [
"./Application/bootstrap/app.php",
"./Application/utils.php"
]
},
"scripts": {
"bootstrap": [
"@php vendor/bin/phinx migrate -e development",
"@php vendor/bin/phinx seed:run -e development"
],
"lint": [
"@php phpcs --runtime-set php_version 80103 --colors",
"@php phpmd Application/ ansi ./phpmd.xml"
]
},
"require": {
"illuminate/database": "^8.78",
"illuminate/http": "^8.78",
"illuminate/filesystem": "^8.78",
"illuminate/container": "^8.78",
"illuminate/config": "^8.78",
"illuminate/cache": "^8.78",
"mikecao/flight": "^2.0",
"aura/payload": "^3.0",
"spatie/url-signer": "^1.2",
"delight-im/auth": "^8.3",
"league/uri-parser": "^1.4",
"vlucas/phpdotenv": "^5.3",
"symfony/mailer": "^6.0",
"monolog/monolog": "^3.2",
"illuminate/support": "^8.79",
"ramsey/uuid": "^4.2",
"illuminate/events": "^8.79",
"laravel/helpers": "^1.5",
"respect/validation": "^2.2",
"elegantweb/sanitizer": "^2.0",
"delight-im/cookie": "^3.4",
"maximebf/debugbar": "^1.18",
"bramus/monolog-colored-line-formatter": "~3.0"
},
"authors": [
{
"name": "Chris",
"email": "7539871+paxperscientiam@users.noreply.github.com"
}
],
"require-dev": {
"league/csv": "^9.7",
"jdorn/sql-formatter": "^1.2",
"robmorgan/phinx": "^0.12.9",
"kint-php/kint": "^4.1"
}
}