-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.07 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.07 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
{
"name": "paket/fram",
"description": "Minimal view framework",
"homepage": "https://github.com/paketphp",
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.2",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"ext-pdo": "*",
"nikic/fast-route": "^1.3",
"paket/bero": "^0.3.0"
},
"suggest": {
"paket/bero": "For ContainerInterface",
"nikic/fast-route": "For FastRouter"
},
"autoload": {
"psr-4": {
"Paket\\Fram\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Paket\\Fram\\": "tests/",
"Paket\\Fram\\Examples\\": "examples/src/"
}
},
"scripts": {
"test": [
"Paket\\Fram\\Helper\\Shell::downloadPhpUnit",
"@php phpunit.phar"
],
"coverage": [
"Paket\\Fram\\Helper\\Shell::downloadPhpUnit",
"phpdbg -qrr phpunit.phar --coverage-text --colors=never"
],
"coverage-html": [
"Paket\\Fram\\Helper\\Shell::downloadPhpUnit",
"Paket\\Fram\\Helper\\Shell::deleteCoverage",
"phpdbg -qrr phpunit.phar --coverage-html coverage"
]
}
}