-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1006 Bytes
/
Copy pathcomposer.json
File metadata and controls
44 lines (44 loc) · 1006 Bytes
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
{
"name": "learnkit/expose-about",
"description": "Expose about data to authenticated requests for diagnose usage",
"license": "GPL-3.0-or-later",
"type": "library",
"authors": [
{
"name": "Sebastiaan Kloos",
"email": "sebastiaan@learnkit.dev"
}
],
"autoload": {
"psr-4": {
"LearnKit\\ExposeAbout\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LearnKit\\ExposeAbout\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"illuminate/support": "^9.0|^10.0"
},
"require-dev": {
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.2",
"orchestra/testbench": "^7.0",
"spatie/laravel-ray": "^1.0",
"nunomaduro/phpinsights": "^2.7",
"laravel/pint": "^1.2"
},
"scripts": {
"insights": "./vendor/bin/phpinsights",
"pint": "./vendor/bin/pint"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}