-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (33 loc) · 862 Bytes
/
composer.json
File metadata and controls
34 lines (33 loc) · 862 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": "nigatedev/framework",
"description": "The Nigatedev PHP framework core application",
"type": "library",
"keywords": ["framework", "nigatedev", "Core"],
"license": "MIT",
"autoload": {
"psr-4": {
"Nigatedev\\Framework\\": ""
}
},
"authors": [
{
"name": "Abass Ben Cheik",
"email": "cheikabassben@gmail.com"
}
],
"require": {
"php": "^7.3|^8.0",
"nigatedev/diyan": "^1.0",
"vlucas/phpdotenv": "^5.3",
"nigatedev/support": "^1.0",
"nigatedev/console": "^1.0",
"guzzlehttp/psr7": "^2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12.94",
"filp/whoops": "^2.14",
"nigatedev/dumper": "^1.0"
}
}