-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.44 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.44 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
{
"name": "onion/framework",
"description": "A minimal PSR-compliant framework",
"keywords": [
"psr-7",
"psr-15",
"framework",
"micro-framework",
"psr"
],
"authors": [
{
"name": "Dimitar Dimitrov",
"email": "daghostman.dimitrov@gmail.com"
}
],
"license": "MIT",
"require": {
"php": "^8.1 || ^8.2",
"guzzlehttp/psr7": "^2.4",
"onion/interfaces": "dev-master",
"onion/common": "dev-master"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^10 || ^9",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.6",
"infection/infection": "^0.26",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"Onion\\Framework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"suggest": {
"onion/rest": "A small library to return REST-compliant responses",
"onion/swoole": "A compatibility layer to add support for SWOOLE app-server"
},
"scripts": {
"fix": "phpcbf --standard=psr12 src/",
"lint": "phpcs --standard=psr12 src/",
"test": "phpunit --coverage-text",
"psalm": "psalm",
"infect": "infection -j4 --min-msi=85 --min-covered-msi=95 --no-progress",
"qa": [
"@fix",
"@lint",
"@test",
"@psalm",
"@infect"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}