forked from nuber-io/nuber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.23 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
{
"name": "nuber-io/nuber",
"description": "Virtualization management software",
"homepage": "https://www.nuber.io",
"type": "project",
"license": "AGPL-3.0",
"require": {
"php": "^7.4.0",
"jamielsharief/data-transfer-object": "^0.1.1",
"jamielsharief/task-runner": "^0.1.2",
"jamielsharief/updater": "^0.1.0",
"originphp/cache": "^2.0",
"originphp/collection": "^2.0",
"originphp/commands": "^3.2",
"originphp/filesystem": "^3.0",
"originphp/framework": "^3.24.4",
"originphp/http-client": "^3.1",
"originphp/log": "^2.0",
"originphp/storage": "^3.0",
"originphp/text": "^2.0",
"originphp/value-store": "^1.0"
},
"require-dev": {
"originphp/debug-plugin": "^2.0",
"originphp/generate": "^3.4",
"phpstan/phpstan": "^0.12.68",
"phpunit/phpunit": "^9.2"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": true
},
"scripts": {
"post-create-project-cmd": [
"@php bin/install"
]
}
}