-
Notifications
You must be signed in to change notification settings - Fork 76
/
composer.json
120 lines (120 loc) · 3.13 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
{
"name": "kitware/cdash",
"description": "An open source, web-based software testing server",
"type": "project",
"license": "BSD-3-Clause",
"support": {
"email": "[email protected]",
"issues": "https://github.com/Kitware/CDash/issues",
"source": "https://github.com/Kitware/CDash",
"wiki": "http://public.kitware.com/Wiki/CDash"
},
"require": {
"php": "^8.2",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-posix": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"ext-xsl": "*",
"ext-zlib": "*",
"24slides/laravel-saml2": "2.4.0",
"aws/aws-sdk-php": "3.325.1",
"directorytree/ldaprecord-laravel": "3.3.5",
"doctrine/dbal": "3.8.6",
"guzzlehttp/guzzle": "7.9.2",
"http-interop/http-factory-guzzle": "1.2.0",
"knplabs/github-api": "3.15.0",
"laravel/framework": "10.48.23",
"laravel/legacy-factories": "1.4.0",
"laravel/socialite": "5.16.0",
"laravel/ui": "4.5.2",
"lcobucci/jwt": "5.4.0",
"mll-lab/laravel-graphiql": "3.2.1",
"nuwave/lighthouse": "6.45.0",
"nyholm/psr7": "1.8.2",
"pear/archive_tar": "1.5.0",
"php-di/php-di": "7.0.7",
"ramsey/uuid": "4.7.6",
"shiftonelabs/laravel-sqs-fifo-queue": "3.0.3",
"socialiteproviders/github": "4.1.0",
"socialiteproviders/gitlab": "4.1.0",
"socialiteproviders/google": "4.1.0",
"socialiteproviders/pingidentity": "1.0.0"
},
"require-dev": {
"ext-dom": "*",
"ext-gd": "*",
"ext-xdebug": "*",
"fakerphp/faker": "1.23.1",
"friendsofphp/php-cs-fixer": "3.64.0",
"larastan/larastan": "^2.7",
"mockery/mockery": "1.6.12",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "1.12.7",
"phpstan/phpstan-deprecation-rules": "1.2.1",
"phpstan/phpstan-mockery": "1.1.3",
"phpstan/phpstan-phpunit": "1.4.0",
"phpstan/phpstan-strict-rules": "1.6.1",
"phpunit/phpunit": "9.6.4"
},
"suggest": {
"ext-memcached": "",
"ext-pdo_mysql": "",
"ext-pdo_pgsql": "",
"ext-phar": ""
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"CDash\\": "app/cdash/include/CDash/"
},
"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"
]
},
"repositories": [
{
"type": "path",
"url": "./resources/providers/PingIdentity"
}
]
}