-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathcomposer.json
More file actions
124 lines (122 loc) · 3.75 KB
/
composer.json
File metadata and controls
124 lines (122 loc) · 3.75 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
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
{
"name": "inex/ixp-manager",
"description": "An application by INEX to manage Internet Exchange Points (IXPs) - https://www.ixpmanager.org/",
"type": "project",
"keywords": ["ixp manager", "ixpm", "inex", "ixp"],
"homepage": "https://github.com/inex/IXP-Manager/wiki",
"license": "GPL-2.0",
"authors": [
{
"name": "Barry O'Donovan",
"email": "barry@opensolutions.ie",
"homepage": "https://www.ixpmanager.org/"
},
{
"name": "Nick Hilliard",
"email": "nick@inex.ie",
"homepage": "https://www.ixpmanager.org/"
}
],
"repositories":[
{
"type": "vcs",
"url": "git@github.com:barryo/Purifier.git"
}
],
"require": {
"php": "^8.4",
"ext-json": "*",
"laravel/framework": "^12.0",
"anahkiasen/former": "^5.1.1",
"bacon/bacon-qr-code": "^3.0.0",
"barryvdh/laravel-dompdf": "^3.0.0",
"erusev/parsedown": "^1.7",
"opensolutions/foil": "^0.7.2",
"intervention/image": "^2.7",
"laravel/horizon": "^5.7",
"laravel/telescope": "^5.0",
"laravel/tinker": "^2.10.1",
"laravel/ui": "^4.0",
"mews/purifier": "^3.4",
"opensolutions/oss-snmp": "^1.0",
"php-ds/php-ds": "^1.7.0",
"pragmarx/google2fa-laravel": "^2.3.0",
"s1lentium/iptools": "^1.2",
"socialiteproviders/manager": "^4.8",
"webpatser/laravel-countries": "^1.5.4",
"wolfcast/browser-detection": "^2.9.5",
"zendesk/zendesk_api_client_php": "^2.2.10"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.5.1",
"fakerphp/faker": "^1.23",
"laravel/boost": "^2.1",
"laravel/dusk": "^8.0",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^11.5.3",
"staudenmeir/dusk-updater": "^1.5",
"vimeo/psalm": "^6.0",
"psalm/plugin-laravel": "^3.0.0"
},
"support": {
"issues": "https://www.ixpmanager.org/support",
"forum": "https://www.inex.ie/mailman/listinfo/ixpmanager",
"docs": "https://docs.ixpmanager.org/",
"source": "https://github.com/inex/IXP-Manager"
},
"autoload": {
"psr-4": {
"IXP\\": "app/",
"Database\\Seeders\\": "database/seeders/",
"SocialiteProviders\\PeeringDB\\": "data/SocialiteProviders/PeeringDB/"
},
"files": [
"app/Support/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-autoload-dump": [
"@php artisan config:clear",
"@php artisan clear-compiled",
"@php artisan package:discover"
],
"post-install-cmd": [
"@php artisan clear-compiled"
],
"post-update-cmd": [
"@php artisan clear-compiled",
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta --filename=.phpstorm.meta.php/laravel.meta.php",
"@php artisan ide-helper:models -W",
"@php artisan telescope:publish",
"@php artisan horizon:install"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
},
"platform": {
"php": "8.4.11"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}