forked from sagebind/windows-registry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 907 Bytes
/
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
{
"name": "digilive/windows-registry",
"description": "A small library for accessing and manipulating the Windows registry",
"keywords": ["registry", "windows"],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "DigiLive",
"email": "[email protected]",
"homepage": "https://digilive.nl"
},
{
"name": "Stephen Coakley",
"email": "[email protected]",
"homepage": "http://stephencoakley.com"
}
],
"replace": {
"coderstephen/windows-registry": "v0.9.1"
},
"require": {
"php": "^7.2",
"ext-com_dotnet": "*"
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"Windows\\Registry\\": "src/",
"Windows\\Registry\\Tests\\": "tests/"
}
}
}