-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.01 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
{
"name": "leonardovilarinho/insphptor",
"type": "framework",
"license": "GPL-3.0",
"minimum-stability": "stable",
"version": "1.0.16",
"authors": [
{
"name": "Leonardo Vilarinho",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/leonardovilarinho/insphptor/issues"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Insphptor\\": "source/"
}
},
"autoload-dev": {
"psr-4": {
"Insphptor\\": "tests/"
}
},
"bin": [
"insphptor"
],
"require": {
"symfony/finder": "~v3.3.2",
"webmozart/json": "~1.2.2",
"symfony/yaml": "^3.3",
"symfony/process": "^3.3",
"symfony/console": "^3.3",
"symfony/filesystem": "^3.3",
"symfony/lock": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"squizlabs/php_codesniffer": "*"
}
}