-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 991 Bytes
/
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": "hmazter/console-skeleton",
"description": "Skeleton for a console application with DI-container and yaml-config",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Kristoffer Högberg",
"email": "[email protected]",
"homepage": "https://hmazter.com"
}
],
"require": {
"php": "^8.1",
"symfony/config": "^6.1",
"symfony/console": "^6.1",
"symfony/dependency-injection": "^6.1",
"symfony/yaml": "^6.1"
},
"require-dev": {
"clue/phar-composer": "^1.3",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^6.1"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"bin": ["./app"],
"scripts": {
"test": "./vendor/bin/phpunit",
"build": "./vendor/bin/phar-composer build",
"analyse": "./vendor/bin/phpstan analyse"
},
"config": {
"sort-packages": true
}
}