forked from Kitware/CDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
110 lines (110 loc) · 2.81 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
{
"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.1",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-posix": "*",
"ext-xsl": "*",
"ext-libxml": "*",
"ext-xml": "*",
"ext-zlib": "*",
"ext-simplexml": "*",
"ext-fileinfo": "*",
"24slides/laravel-saml2": "2.2.0",
"adldap2/adldap2-laravel": "6.1.7",
"aws/aws-sdk-php": "3.261.2",
"doctrine/dbal": "3.6.2",
"guzzlehttp/guzzle": "7.7.0",
"http-interop/http-factory-guzzle": "1.2.0",
"knplabs/github-api": "3.9.0",
"laravel/framework": "9.52.15",
"laravel/legacy-factories": "1.3.2",
"laravel/ui": "3.4.6",
"lcobucci/jwt": "4.1.5",
"league/oauth2-github": "3.1.0",
"league/oauth2-google": "4.0.1",
"nyholm/psr7": "1.8.0",
"omines/oauth2-gitlab": "3.5.0",
"pear/archive_tar": "1.4.14",
"php-di/php-di": "7.0.2",
"ramsey/uuid": "4.7.4"
},
"require-dev": {
"ext-dom": "*",
"ext-gd": "*",
"ext-xdebug": "*",
"fakerphp/faker": "1.23.0",
"mockery/mockery": "1.5.1",
"nunomaduro/larastan": "2.5.1",
"phpstan/extension-installer": "1.3.1",
"phpstan/phpstan": "1.10.15",
"phpstan/phpstan-deprecation-rules": "1.1.4",
"phpstan/phpstan-mockery": "1.1.1",
"phpstan/phpstan-phpunit": "1.3.10",
"phpstan/phpstan-strict-rules": "1.5.1",
"phpunit/phpunit": "9.6.4",
"friendsofphp/php-cs-fixer": "3.17.0"
},
"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"
]
}
}