-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.56 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "verge/verge-framework",
"description": "A minimal PHP framework for the edge. Fast, simple, beautiful.",
"type": "library",
"version": "0.1.0",
"authors": [
{
"name": "Chris Arter",
"email": "chris@arter.dev"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"Verge\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Verge\\Tests\\": "tests/"
}
},
"bin": [
"bin/verge"
],
"require": {
"php": "^8.2",
"psr/http-message": "^2.0",
"psr/http-client": "^1.0",
"psr/container": "^2.0",
"psr/http-server-middleware": "^1.0",
"psr/http-factory": "^1.1",
"psr/event-dispatcher": "^1.0",
"psr/clock": "^1.0",
"minicli/minicli": "^4.2"
},
"require-dev": {
"pestphp/pest": "^2.0",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.92",
"phpbench/phpbench": "^1.4",
"pestphp/pest-plugin-mock": "^2.0"
},
"scripts": {
"test": "pest --parallel",
"lint": "php-cs-fixer fix --dry-run --diff",
"fix": "php-cs-fixer fix",
"phpstan": "phpstan analyse",
"metrics": "./benchmarks/metrics",
"metrics:save": "./benchmarks/metrics --save"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}