-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.5 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
{
"name": "codefyphp/skeleton",
"type": "project",
"description": "Skeleton package for creating a new CodefyPHP Framework project.",
"keywords": ["codefy","codefyphp","codefy-php","routing","skeleton"],
"license": "MIT",
"authors": [
{
"name": "Joshua Parker",
"email": "[email protected]",
"homepage": "https://joshuaparker.dev/",
"role": "Developer"
}
],
"require": {
"php": ">=8.2",
"codefyphp/codefy": "^2",
"franzl/whoops-middleware": "^2.0",
"paragonie/csp-builder": "^2.9"
},
"autoload": {
"psr-4": {
"App\\": "App/"
},
"files": [
"App/Infrastructure/Http/Middleware/Csrf/helpers.php"
]
},
"scripts": {
"test": "vendor/bin/pest",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
}
},
"require-dev": {
"pestphp/pest": "^1.23",
"qubus/qubus-coding-standard": "^1.1"
},
"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."
}
}