This repository has been archived by the owner on Apr 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 1.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
{
"name": "rentdesk/laravel-nemid",
"description": "Rentdesk NemID Laravel Package allows you to integrate NemID with your laravel application.",
"type": "library",
"license": "mit",
"authors": [
{
"name": "Andrew Bashtannik",
"email": "bashtannik@gmail.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/a-bashtannik/x509.git"
},
{
"type": "vcs",
"url": "https://github.com/a-bashtannik/asn1.git"
}
],
"require": {
"sop/asn1": "dev-nemid as 4.1.0",
"sop/x509": "dev-php80",
"php": "^8.0",
"nesbot/carbon": "^2.0",
"symfony/process": "^5.0",
"ext-openssl": "*",
"ext-dom": "*",
"ext-gmp": "*",
"ext-intl": "*",
"ext-soap": "*"
},
"require-dev": {
"orchestra/testbench": "^6.17",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "3.*",
"vimeo/psalm": "^4.7"
},
"autoload": {
"psr-4": {
"Rentdesk\\Nemid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rentdesk\\Nemid\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Rentdesk\\Nemid\\Providers\\NemidServiceProvider"
],
"aliases": {
"Nemid": "Rentdesk\\Nemid\\Facades\\Nemid"
}
}
},
"scripts": {
"check-style": "vendor/bin/phpcs -p --standard=PSR12 config/ src/ tests/",
"fix-style": "vendor/bin/phpcbf -p --standard=PSR12 config/ src/ tests/",
"test": "phpunit",
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"github-oauth": {
"github.com": "ad8c50a0d92de9ce477cd1113a2529b1bd860a00"
}
}
}