-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.1 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.1 KB
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
{
"name": "vibemod/console",
"description": "Symfony Console CLI application with user management commands",
"type": "project",
"license": "MIT",
"require": {
"php": ">=8.4",
"contributte/bootstrap": "^0.7",
"contributte/console": "^0.10",
"contributte/nella": "^0.3",
"nettrine/dbal": "^0.10",
"nettrine/orm": "^0.10",
"nettrine/migrations": "^0.10",
"symfony/var-exporter": "^7.0"
},
"require-dev": {
"contributte/qa": "^0.4.0",
"contributte/dev": "^0.5.0",
"contributte/tester": "^0.4.0",
"contributte/phpstan": "^0.2",
"mockery/mockery": "^1.6.12",
"phpstan/phpstan-doctrine": "^2.0.2"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}