-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
47 lines (47 loc) · 1.19 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": "adhocore/phint",
"description": "Initializes new PHP project with sane defaults using templates",
"type": "library",
"keywords": [
"php-project-scaffolding", "php-project-init", "bootstrap", "template", "init-project", "phint"
],
"license": "MIT",
"authors": [
{
"name": "Jitendra Adhikari",
"email": "jiten.adhikary@gmail.com"
}
],
"autoload": {
"psr-4": {
"Ahc\\Phint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ahc\\Phint\\Test\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"adhocore/cli": "^0.8.1",
"adhocore/json-comment": "^0.1",
"crazyfactory/docblocks": "^2.2",
"symfony/finder": "^3.3.0",
"twig/twig": "^2.4.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0"
},
"bin": ["bin/phint"],
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"scripts": {
"test": "phpunit",
"test:cov": "phpunit --coverage-text --coverage-clover coverage.xml --coverage-html vendor/cov"
}
}