-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.33 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.33 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "codefyphp/codefy",
"type": "library",
"description": "PHP framework for Domain Driven Development, CQRS, and Event Sourcing.",
"keywords": ["codefy","codefyphp","codefy-php","routing","application","container","framework","php-framework"],
"license": "MIT",
"authors": [
{
"name": "Joshua Parker",
"email": "joshua@joshuaparker.dev"
}
],
"require": {
"php": ">=8.4",
"ext-pdo": "*",
"codefyphp/domain-driven-core": "^3",
"composer/class-map-generator": "^1",
"dragonmantank/cron-expression": "^3",
"forxer/gravatar": "^5.0",
"melbahja/seo": "^2",
"middlewares/cache": "^3",
"middlewares/minifier": "^2",
"middlewares/referrer-spam": "^2",
"middlewares/whoops": "^2",
"paragonie/csp-builder": "^3",
"php-debugbar/php-debugbar": "^2.2",
"qubus/cache": "^4",
"qubus/error": "^3",
"qubus/event-dispatcher": "^4",
"qubus/exception": "^4",
"qubus/expressive": "^3",
"qubus/filesystem": "^4",
"qubus/inheritance": "^4",
"qubus/mail": "^5",
"qubus/nosql": "^4",
"qubus/router": "^4",
"qubus/security": "^4",
"qubus/support": "^4",
"qubus/validation": "^5",
"qubus/view": "^3",
"symfony/console": "^7",
"symfony/options-resolver": "^7"
},
"autoload": {
"psr-4": {
"Codefy\\Framework\\": "src/"
},
"files": [
"src/Helpers/core.php",
"src/Helpers/path.php",
"src/Http/Middleware/Csrf/helpers.php"
]
},
"require-dev": {
"fenom/fenom": "^3.0",
"fenom/providers-collection": "^1.0",
"foil/foil": "^0.6.7",
"qubus/qubus-coding-standard": "^2.1.2"
},
"autoload-dev": {
"psr-4": {
"Codefy\\Framework\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"codestan": "phpstan analyse -l 6"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
}
}
}