-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.46 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
52
53
54
55
56
57
58
59
{
"name": "m.rahimi/fandogh",
"description": "Fandogh Micro-Framework.",
"keywords": [
"php",
"Framework",
"mvc"
],
"homepage": "https://github.com/Mohammadreza-73/Fandogh",
"support": {
"issues": "https://github.com/Mohammadreza-73/Fandogh/issues",
"source": "https://github.com/Mohammadreza-73/Fandogh"
},
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Mohammadreza-73",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-pdo": "*",
"ext-json": "*",
"vlucas/phpdotenv": "^5.3",
"catfan/medoo": "^2.1",
"hisorange/browser-detect": "^4.5",
"filp/whoops": "^2.14",
"nesbot/carbon": "^2.66",
"symfony/console": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.4",
"guzzlehttp/guzzle": "^7.5"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}