-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
59 lines (59 loc) · 1.79 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
54
55
56
57
58
59
{
"name": "designcise/bitframe",
"type": "library",
"description": "BitFrame PHP microframework",
"license": "MIT",
"authors": [
{
"name": "Daniyal Hamid",
"homepage": "https://www.designcise.com/"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"psr/container": "^2.0",
"psr/http-message": "^2.0",
"psr/http-factory": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.3",
"squizlabs/php_codesniffer": "3.*",
"phpmd/phpmd": "@stable",
"phpstan/phpstan": "*",
"nyholm/psr7": "^1.8"
},
"suggest": {
"ext-fileinfo": "For supporting embedded files when using BitFrame\\Http\\Message\\FileResponse",
"ext-libxml": "For out-of-the-box XML support, please install libxml extension",
"ext-simplexml": "For out-of-the-box XML support, please install simplexml extension",
"nyholm/psr7": "Add PSR-7 / PSR-17 based HTTP Messaging support for your App",
"designcise/bitframe-fastroute": "Add routing support to your App"
},
"scripts": {
"style": "vendor/bin/phpcs --standard=PSR12 src",
"style-fix": "vendor/bin/phpcbf --standard=PSR12 src",
"check": "vendor/bin/phpstan analyse src --level=5 -c phpstan.neon",
"md": "vendor/bin/phpmd src text cleancode,unusedcode,codesize,design,naming",
"test": "vendor/bin/phpunit --configuration phpunit.xml --testsuite bitframe",
"test-report": "vendor/bin/phpunit --configuration phpunit.xml --testsuite bitframe --coverage-clover=coverage.xml"
},
"autoload": {
"psr-4": {
"BitFrame\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BitFrame\\Test\\": "test/"
},
"files": [
"test/Asset/function.php"
]
},
"config": {
"sort-packages": true
}
}