-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (46 loc) · 1.13 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
{
"name": "phramework/hephaestus",
"description": "Terminal toolbox for phramework",
"license": "Apache-2.0",
"homepage": "https://phramework.github.io/",
"type": "project",
"require": {
"ext-curl": "*",
"php": ">=5.6",
"phramework/validate": "0.*",
"phramework/exceptions": "*",
"corneltek/getoptionkit": "~2"
},
"require-dev": {
"phpunit/phpunit": "5.*",
"apigen/apigen": "^4.1",
"ext-pdo_sqlite": "*",
"squizlabs/php_codesniffer": "~2"
},
"authors": [{
"name": "Xenofon Spafaridis",
"email": "[email protected]"
}],
"support": {
"email": "[email protected]"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Hephaestus\\": "src/"
}
},
"scripts": {
"test": [
"find src/ -name '*.php' -print0 | xargs -0 -L 1 php -l",
"phpunit"
],
"lint": "phpcs -p -s --standard=PSR2 ./src",
"doc": "apigen generate -s ./src -d ./doc --template-theme bootstrap --todo --tree --deprecated --no-source-code --title \"hephaestus\"",
"run": "php ./bin/hephaestus"
},
"bin": [
"bin/hephaestus"
]
}