-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (43 loc) · 1.25 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
{
"name": "femtopixel/nano-framework",
"description": "Nano Framework - easier than easiest framework",
"keywords":["nano", "framework", "easy", "efficient", "lightweight", "simple", "MVC", "quickstart", "PHP 7"],
"license": "MIT",
"homepage": "http://femtopixel.github.io/nano-framework",
"authors": [
{
"name": "Jay MOULIN",
"email": "[email protected]",
"homepage": "http://github.com/jaymoulin"
}
],
"support": {
"issues": "http://github.com/femtopixel/nano-framework/issues",
"source": "https://github.com/femtopixel/nano-framework"
},
"autoload": {
"psr-4": {
"Nano\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nano\\Tests\\": "tests/"
}
},
"scripts": {
"phpunit": "phpunit",
"phpcs": "phpcs src --standard=PSR2 --report-checkstyle=build/logs/checkstyle.xml",
"phploc": "phploc src --log-csv build/logs/phploc.csv",
"phpmd": "phpmd src xml codesize,controversial,cleancode,design,naming,unusedcode --reportfile build/logs/checkstyle.xml",
"phpcpd": "phpcpd src --log-pmd=build/logs/cpd.xml"
},
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.0",
"phpmd/phpmd": "^2.4"
}
}