-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.92 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.92 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "codefyphp/vihzhuo",
"type": "project",
"description": "Starter app that provides a simple and quick way to build websites in minutes.",
"keywords": ["codefy","codefyphp","codefy-php","routing","skeleton","vihzhuo"],
"license": "MIT",
"authors": [
{
"name": "Joshua Parker",
"email": "joshua@joshuaparker.dev",
"homepage": "https://joshuaparker.dev/",
"role": "Developer"
}
],
"require": {
"php": ">=8.4",
"ext-pdo": "*",
"codefyphp/codefy": "^3.1",
"nomadicjosh/vihzhuo": "^1"
},
"autoload": {
"psr-4": {
"Application\\": "src/Application/",
"Domain\\": "src/Domain/",
"Database\\Seeders\\": "database/seeders/",
"Infrastructure\\": "src/Infrastructure/"
},
"files": [
"src/Application/Shared/Helpers/core.php"
]
},
"scripts": {
"codestan": "phpstan analyse -l max",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "vendor/bin/pest",
"post-create-project-cmd": [
"touch .enc.key",
"cp .env.example .env"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"qubus/qubus-coding-standard": "^2.1.2"
},
"suggest": {
"fenom/fenom": "Lightweight and fast template engine for PHP.",
"fenom/providers-collection": "Additional providers for Fenom template engine.",
"foil/foil": "Write simple, clean, and concise templates with nothing more than PHP.",
"phparkitect/phparkitect": "Helps you to keep your PHP codebase coherent and solid."
}
}