-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
113 lines (113 loc) · 3.58 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
{
"name": "fitzwilliammuseum/fitz-main-website",
"type": "project",
"description": "A front end for the Fitzwilliam Museum website",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"repositories": [
{
"type": "git",
"name": "fitzwilliammuseum/maps",
"url": "https://github.com/fitzwilliammuseum/maps.git"
},
{
"type": "git",
"name": "fitzwilliammuseum/instagram-php-scraper",
"url": "https://github.com/fitzwilliammuseum/instagram-php-scraper.git"
}
],
"require": {
"php": "^8.0|^8.1",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"alaouy/youtube": "^2.2.5",
"arcanedev/laravel-markdown": "^6.0",
"atymic/twitter": "^3.1",
"codeat3/blade-fluentui-system-icons": "^1.30.1",
"conedevelopment/blade-filters": "^1.0",
"diglactic/laravel-breadcrumbs": "^v8.0.0",
"elasticsearch/elasticsearch": "^7.17.0",
"fitzwilliammuseum/instagram-php-scraper": "master",
"fitzwilliammuseum/maps": "master",
"fruitcake/laravel-cors": "^3.0.0",
"gmostafa/php-graphql-client": "^1.13",
"guzzlehttp/guzzle": "^7.4.5",
"imagekit/imagekit": "^2.0.0",
"imliam/laravel-blade-helper": "^1.4.3",
"jmikola/geojson": "^1.1.1",
"laravel/framework": "^9.25",
"laravel/tinker": "^2.7.2",
"laravel/ui": "^3.4.6",
"laravelcollective/html": "^6.3",
"mews/purifier": "^3.3.8",
"olssonm/l5-very-basic-auth": "^6.7",
"owenvoke/blade-fontawesome": "^2.0",
"phpclassic/php-shopify": "^v1.1.24",
"phpfastcache/phpfastcache": "^9.1.2",
"predis/predis": "^1.1.10",
"psr/cache": "^3.0",
"rebing/graphql-laravel": "^8.3",
"solarium/solarium": "^6.2.6",
"spatie/laravel-ignition": "^1.3.1",
"spatie/laravel-feed": "^4.1.4",
"spatie/laravel-googletagmanager": "^2.6.6",
"spatie/laravel-missing-page-redirector": "^2.9.2",
"spatie/laravel-responsecache": "^7.4.1",
"spatie/laravel-sitemap": "^6.2.0",
"symfony/cache": "^6.1.3",
"symfony/http-kernel": "^6.2.x-dev",
"upthemedia/xss-protection": "^0.0.8",
"xantios/mimey": "^2.2.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.8",
"barryvdh/laravel-ide-helper": "^2.12.3",
"fakerphp/faker": "^1.20.0",
"mockery/mockery": "^1.5.0",
"nunomaduro/collision": "^6.2",
"phpunit/phpunit": "^9.5.22",
"sven/artisan-view": "^3.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"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"
]
}
}