-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 934 Bytes
/
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
{
"name": "emad/php-portfolio-app",
"authors": [
{
"name": "emadvnubis",
"email": "menanafen@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"vlucas/phpdotenv": "^5.5@dev",
"spatie/ignition": "^1.11",
"illuminate/database": "10.x-dev",
"illuminate/container": "10.x-dev",
"illuminate/contracts": "10.x-dev",
"illuminate/events": "10.x-dev",
"illuminate/filesystem": "10.x-dev",
"illuminate/view": "10.x-dev",
"illuminate/console": "10.x-dev",
"laravel/prompts": "^0.1.0@dev"
},
"require-dev": {
"symfony/var-dumper": "6.4.x-dev",
"phpstan/phpstan": "1.11.x-dev"
},
"autoload": {
"psr-4": {
"Core\\": "core/",
"App\\": "app/",
"Database\\": "database/",
"Commands\\": "commands/"
}
}
}