-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·34 lines (34 loc) · 820 Bytes
/
composer.json
File metadata and controls
executable file
·34 lines (34 loc) · 820 Bytes
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
{
"name": "dahas/f7k",
"description": "A PHP framework",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Martin Wolf",
"email": "[email protected]"
}
],
"scripts": {
"test": "./vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"f7k\\App\\": "app/",
"f7k\\Controller\\": "controllers/",
"f7k\\Service\\": "services/",
"f7k\\Sources\\": "src/",
"f7k\\Entities\\": "entities/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"require": {
"vlucas/phpdotenv": "^5.5",
"latte/latte": "^3.0",
"erusev/parsedown": "^1.7",
"ezyang/htmlpurifier": "^4.16",
"hybridauth/hybridauth": "^3.9"
}
}