This repository was archived by the owner on Oct 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (62 loc) · 1.54 KB
/
composer.json
File metadata and controls
63 lines (62 loc) · 1.54 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
{
"name": "libaro/secure-id",
"description": "A package to integrate secure-id",
"keywords": [
"libaro",
"secure-id"
],
"homepage": "https://github.com/libaro/secure-id",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tim Vande Walle",
"email": "tim@libaro.be",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0|^8.1|^8.2|^8.3",
"jenssegers/agent": "^2.6",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"pestphp/pest": "^1.23",
"pestphp/pest-plugin-laravel": "^1.4",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Libaro\\SecureId\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Libaro\\SecureId\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"analyse-json": "vendor/bin/phpstan analyse --error-format=json",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Libaro\\SecureId\\SecureIdServiceProvider"
],
"aliases": {
"SecureId": "Libaro\\SecureId\\SecureIdFacade"
}
}
}
}