-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 1.76 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
{
"name": "nais/naisdevice-jita",
"description": "Just in time access to sensitive gateways",
"license": "MIT",
"authors": [
{
"name": "Christer Edvartsen",
"email": "[email protected]"
},
{
"name": "Torbjørn Hallenberg",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Naisdevice\\Jita\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Naisdevice\\Jita\\": "tests/"
}
},
"require": {
"php": ">=8.3",
"ext-apcu": "*",
"ext-pdo": "*",
"doctrine/dbal": "^4.2",
"monolog/monolog": "^3.8",
"onelogin/php-saml": "^4.2",
"php-di/slim-bridge": "^3.4",
"promphp/prometheus_client_php": "^2.13",
"slim/flash": "^0.4.0",
"slim/psr7": "^1.7",
"slim/slim": "^4.14",
"slim/twig-view": "^3.4",
"tuupola/slim-basic-auth": "^3.4",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"navikt/coding-standard": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.5",
"symfony/var-dumper": "^7.2"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:coverage": "vendor/bin/phpunit --coverage-html build/coverage --coverage-text",
"sa": "vendor/bin/phpstan",
"cs": "php-cs-fixer fix --dry-run --diff",
"ci": [
"@test",
"@sa",
"@cs"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8080 -t public/"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}