-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·41 lines (41 loc) · 1.14 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
{
"name": "ar2labs/wiring-start",
"description": "Wiring micro framework start",
"type": "project",
"license": "BSD-3-Clause",
"authors": [
{
"name": "AR2 Labs Members",
"email": "[email protected]"
}
],
"require": {
"ar2labs/wiring": "^2.3",
"hassankhan/config": "^2.1",
"illuminate/database": "^7.29",
"laminas/laminas-diactoros": "^2.4",
"league/route": "^4.5",
"monolog/monolog": "^2.1",
"php-di/php-di": "^6.3",
"phpmailer/phpmailer": "^6.1",
"symfony/console": "^5.1",
"twig/twig": "^3.1",
"vlucas/phpdotenv": "^4.1"
},
"autoload": {
"psr-4": {
"App\\": "app/App/",
"Console\\": "app/Console/"
}
},
"scripts": {
"test": [
"@phpstan"
],
"php-cs-fixer": "php-cs-fixer fix --config=php_cs.dist --ansi --no-interaction",
"phpstan": "phpstan analyse app boot config --level=max --autoload-file=./public/helpers.php --no-progress --ansi"
},
"require-dev": {
"phpstan/phpstan": "^1.8"
}
}