-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (53 loc) · 1.35 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
{
"name": "stubbles/webapp-core",
"type": "library",
"license": "BSD-3-Clause",
"description": "Base classes for Stubbles based web applications.",
"require": {
"php": "^8.2",
"ext-json": "*",
"stubbles/ioc": "^11.0",
"stubbles/input": "^9.0",
"stubbles/peer": "^10.0",
"stubbles/reflect": "^10.0",
"stubbles/sequence": "^10.1",
"stubbles/streams": "^10.0",
"stubbles/values": "^11.0"
},
"suggest": {
"stubbles/xml": "^9.0",
"stubbles/image": "^7.0"
},
"require-dev": {
"ext-fileinfo": "*",
"ext-session": "*",
"stubbles/xml": "^9.0",
"stubbles/image": "^7.0",
"phpunit/phpunit": "^10.5",
"mikey179/vfsstream": "^1.6.11",
"bovigo/callmap": "^8.0",
"bovigo/assert": "^8.0"
},
"autoload": {
"psr-4": {
"stubbles\\webapp\\": "src/main/php"
},
"files": ["src/main/php/functions.php"]
},
"autoload-dev": {
"psr-4": {
"stubbles\\webapp\\": "src/test/php",
"stubbles\\helper\\": "src/test/helper"
}
},
"extra": {
"branch-alias": {
"dev-master": "10.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit"
}
}