forked from alexmanno/drunk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.47 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
{
"name": "alexmanno/drunk",
"description": "A boilerplate made drunk",
"type": "project",
"autoload": {
"psr-4": {
"AlexManno\\Drunk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\AlexManno\\Drunk\\": "tests/"
}
},
"require": {
"ext-json": "*",
"zendframework/zend-diactoros": "^2.1",
"zendframework/zend-httphandlerrunner": "^1.1",
"vlucas/phpdotenv": "^3.3",
"php-di/php-di": "^6.0",
"nikic/fast-route": "^1.3",
"doctrine/orm": "^2.6",
"guzzlehttp/guzzle": "~6.0",
"doctrine/annotations": "^1.6",
"symfony/config": "^4.2",
"symfony/console": "^4.2",
"league/flysystem": "^1.0",
"rakit/validation": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"phpstan/phpstan": "^0.11.4",
"jangregor/phpstan-prophecy": "^0.3.0",
"phpstan/phpstan-doctrine": "^0.11.2",
"facile-it/facile-coding-standard": "^0.3.1"
},
"license": "MIT",
"authors": [
{
"name": "Alessandro Manno",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix --diff",
"post-install-cmd": [
"\\AlexManno\\Drunk\\Core\\Helpers\\PostInstallCommand::postInstallHook"
]
}
}