-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 2.31 KB
/
Copy pathcomposer.json
File metadata and controls
83 lines (83 loc) · 2.31 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
{
"name": "janoppolzer/metaman",
"type": "project",
"description": "MetaMan is a Laravel-based web application to manage SAML metadata.",
"keywords": [
"metaman",
"metadata",
"saml"
],
"license": "MIT",
"require": {
"php": "^8.3",
"ext-dom": "*",
"ext-exif": "*",
"czproject/git-php": "^4.3",
"directorytree/ldaprecord-laravel": "^3.4.0",
"doctrine/dbal": "^4.2",
"guzzlehttp/guzzle": "^7.9",
"laravel/framework": "^12.0.0",
"laravel/tinker": "^2.9",
"livewire/livewire": "^3.5",
"psy/psysh": "^0.12.7"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.14",
"brianium/paratest": "^7.6",
"fakerphp/faker": "^1.24",
"laravel/dusk": "^8.2",
"laravel/envoy": "^2.9",
"laravel/pail": "^1.1",
"laravel/pint": "^1.18",
"laravel/sail": "^1.38",
"larswiegers/laravel-translations-checker": "^0.9.2",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.5",
"phpunit/php-code-coverage": "^11.0",
"phpunit/phpunit": "^11.4",
"spatie/laravel-ignition": "^2.8",
"vlucas/phpdotenv": "^5.6"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "8.3.6"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Utils/MetaManHelpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"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"
]
}
}