-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
132 lines (132 loc) · 4.14 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "aic/website",
"description": "Art Institute of Chicago website – artic.edu",
"keywords": [
"website",
"museum",
"musetech",
"art institute of chicago"
],
"license": "AGPL-3.0-or-later",
"type": "project",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/art-institute-of-chicago/data-hub-foundation.git"
},
{
"type": "package",
"package": {
"type": "metapackage",
"name": "vendor/package-patches",
"version": "1.5.0",
"require": {
"netresearch/composer-patches-plugin": "~1.2"
},
"extra": {
"patches": {
"area17/twill": [
{
"title": "WEB-2103: Get repository model of API models",
"url": "patches/WEB-2301---get-repository-of-API-models.diff"
},
{
"title": "WEB-2678: Backport Node 10 syntax",
"url": "patches/WEB-2678---backport-node-10-syntax.diff"
}
]
}
}
}
}
],
"require": {
"php": "^8.1",
"aic/data-hub-foundation": "^2.0",
"area17/twill": "2.13.*",
"chillerlan/php-qrcode": "^5.0",
"eluceo/ical": "2.0",
"erusev/parsedown": "^1.7",
"guzzlehttp/guzzle": "^7.0.1",
"intervention/httpauth": "^4.0",
"kalnoy/nestedset": "^6.0",
"laravel/framework": "^10.0",
"laravel/sanctum": "^3.0",
"laravel/tinker": "^2.0",
"league/csv": "^9.0",
"michelf/php-smartypants": "^1.8",
"ramsey/uuid": "^4.0",
"rlanvin/php-rrule": "^2.0",
"sendgrid/sendgrid": "^8.1",
"sentry/sentry-laravel": "^4.9",
"spatie/calendar-links": "^1.0",
"spatie/laravel-feed": "^4.0",
"spatie/laravel-sitemap": "^6.0",
"vendor/package-patches": "^1.0",
"yeslogic/prince-php-wrapper": "^1.5"
},
"require-dev": {
"brianium/paratest": "^7.0",
"spatie/laravel-ignition": "^2.0",
"fakerphp/faker": "^1.0",
"itsgoingd/clockwork": "^5.0",
"laravel/sail": "^1.0",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^7.0",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"lint": [
"@putenv COMPOSER=vendor/aic/data-hub-foundation/composer.json",
"@composer lint"
],
"format": [
"@putenv COMPOSER=vendor/aic/data-hub-foundation/composer.json",
"@composer format"
],
"test": [
"Composer\\Config::disableProcessTimeout",
"php artisan test --parallel --stop-on-failure"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"netresearch/composer-patches-plugin": true,
"php-http/discovery": true
}
}
}