-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
62 lines (62 loc) · 1.18 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
53
54
55
56
57
58
59
60
61
62
{
"name": "slim/console",
"type": "library",
"description": "Slim Console",
"keywords": [
"framework",
"php",
"slim"
],
"homepage": "https://www.slimframework.com",
"license": "MIT",
"authors": [
{
"name": "Pierre Berube",
"email": "pierre@lgse.com",
"homepage": "http://www.lgse.com"
},
{
"name": "Temuri Takalandze",
"email": "me@abgeo.dev",
"homepage": "https://abgeo.dev"
}
],
"require": {
"ext-json": "*",
"php": "^7.4 || ^8.0",
"symfony/console": "^5.4"
},
"require-dev": {
"adriansuter/php-autoload-override": "^1.4",
"phpspec/prophecy": "^1.19",
"phpstan/phpstan": "^1.10.59",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.9"
},
"autoload": {
"psr-4": {
"Slim\\Console\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Slim\\Tests\\Console\\": "tests"
}
},
"scripts": {
"test": [
"@phpunit",
"@phpcs",
"@phpstan"
],
"phpunit": "phpunit",
"phpcs": "phpcs",
"phpstan": "phpstan analyse src --memory-limit=-1"
},
"config": {
"sort-packages": true
},
"bin": [
"bin/slim"
]
}