-
Notifications
You must be signed in to change notification settings - Fork 164
/
composer.json
140 lines (135 loc) · 4.28 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
133
134
135
136
137
138
139
140
{
"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.odonovan@inex.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.0.2",
"ext-json": "*",
"opensolutions/oss-snmp": "^1.0",
"fideloper/proxy": "^4.4",
"laravel/framework": "^9.19",
"laravel/tinker": "^2.7",
"foil/foil": "^0.6.7",
"zendesk/zendesk_api_client_php": "^2.2.10",
"guzzlehttp/guzzle": "^7.2",
"intervention/image": "^2.3",
"anahkiasen/former": "^4.6",
"barryvdh/laravel-dompdf": "^2.0.0",
"mews/purifier": "^3.2",
"php-ds/php-ds": "^1.1",
"erusev/parsedown": "^1.7",
"s1lentium/iptools": "^1.1",
"webpatser/laravel-countries": "^1.5.4",
"laravel/telescope": "^4.4.4",
"laravel/horizon": "^5.7",
"socialiteproviders/manager": "^4",
"pragmarx/google2fa-laravel": "^1.4.1",
"bacon/bacon-qr-code": "^2.0.3",
"wolfcast/browser-detection": "^2.9.5",
"laravel/ui": "^3.0",
"doctrine/dbal": "^3.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.5.2",
"barryvdh/laravel-ide-helper": "^2.9",
"beyondcode/laravel-dump-server": "^1.7",
"fakerphp/faker": "^1.9.1",
"laravel/dusk": "^7.13",
"laravel/pint": "^1.0",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.5.10",
"psalm/plugin-laravel": "^2.9",
"spatie/laravel-ignition": "^1.0",
"staudenmeir/dusk-updater": "^1.2.2",
"vimeo/psalm": "^4.7"
},
"support": {
"issues": "https://www.ixpmanager.org/support.php",
"forum": "https://www.inex.ie/mailman/listinfo/ixpmanager",
"docs": "http://docs.ixpmanager.org/",
"source": "https://github.com/inex/IXP-Manager"
},
"autoload": {
"psr-4": {
"IXP\\": "app/",
"Database\\Seeders\\": "database/seeders/",
"Database\\": "database",
"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-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@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 -Wr",
"@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.0.2"
}
},
"minimum-stability": "stable"
}