This repository was archived by the owner on Jun 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.91 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.91 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
64
65
66
67
68
69
70
71
72
{
"name": "bitweb/id-services",
"description": "BitWeb extension for Estonian ID-Card and Mobile ID authentication and signing.",
"license": "BSD-3-Clause",
"keywords": [
"authentication",
"signing",
"mobile-id",
"mobile id",
"id-card",
"id card",
"autentimine",
"allkirjastamine",
"mobiil id",
"mobiilID",
"ID kaart"
],
"homepage": "http://bitweb.ee/",
"authors": [
{
"name": "Rain Ramm",
"email": "rain@bitweb.ee"
},
{
"name": "Tõnis Tobre",
"email": "tobre@bitweb.ee"
},
{
"name": "Priit Rand",
"email": "priit@bitweb.ee"
}
],
"require": {
"php": ">=5.6",
"zendframework/zend-soap": "~2.3",
"zendframework/zend-stdlib": "~3.0",
"zendframework/zend-hydrator": "~2.2",
"zendframework/zend-log": "~2.3"
},
"require-dev": {
"phpunit/PHPUnit": "3.7.*",
"satooshi/php-coveralls": "dev-master",
"sebastianbergmann/phpcov": "1.1.0"
},
"autoload": {
"psr-4": {
"BitWeb\\IdServices\\": "src/",
"BitWeb\\IdServicesTest\\": "test/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "sebastianbergmann/phpcov",
"version": "1.1.0",
"dist": {
"url": "https://github.com/sebastianbergmann/phpcov/archive/1.1.0.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/sebastianbergmann/phpcov.git",
"type": "git",
"reference": "1.1.0"
},
"bin": [
"phpcov.php"
]
}
}
]
}