-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
55 lines (55 loc) · 1.15 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
{
"name": "izniburak/nur",
"type": "project",
"description": "A simple framework for PHP",
"keywords": [
"php",
"framework",
"nur",
"simple",
"basic"
],
"homepage": "https://github.com/izniburak/nur",
"license": "MIT",
"authors": [
{
"name": "İzni Burak Demirtaş",
"email": "[email protected]",
"homepage": "https://buki.dev",
"role": "Creator"
}
],
"require": {
"php": "^8.1",
"izniburak/nur-core": "^4.0"
},
"require-dev": {
"doctrine/dbal": "^3.5.1",
"filp/whoops": "^2.15",
"fakerphp/faker": "^1.21"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php nur app:keygen --ansi"
]
},
"support": {
"email": "[email protected]"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev"
}