-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.09 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" : "piko/framework",
"description" : "Ultra lighweight MVC web framework",
"keywords" : [
"micro-framework",
"framework",
"micro",
"mvc"
],
"authors" : [{
"name" : "Sylvain Philip",
"homepage" : "https://www.sphilip.com",
"role" : "Developer"
}
],
"homepage" : "https://github.com/piko-framework/piko",
"license" : "LGPL-3.0-or-later",
"require" : {
"php": ">=7.1.0",
"httpsoft/http-server-request": "^1.0",
"piko/core": "^2.2",
"piko/router": "^3.1",
"psr/http-server-middleware": "^1.0"
},
"autoload" : {
"psr-4" : {
"Piko\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Piko\\Tests\\" : "tests/"
}
},
"require-dev" : {
"phpunit/phpunit" : "^10.5",
"squizlabs/php_codesniffer" : "^3.5",
"phpstan/phpstan": "^1.8"
},
"scripts" : {
"test": [
"@phpunit",
"@phpcs",
"@phpstan"
],
"phpunit" : "phpunit",
"phpcs" : "phpcs --standard=vendor/piko/core/coding-standard src",
"phpstan" : "phpstan"
},
"config": {
"sort-packages": true
}
}