forked from ajayyadavexpo/xenophp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 952 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 952 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
35
36
37
{
"name": "xenophp/framework",
"description": "Xenophp is a lightweight PHP framework with Routing",
"type": "project",
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files":[
"app/Services/Global/Functions.php"
]
},
"license": "MIT",
"authors": [
{
"name": "AjayYadavAi",
"email": "ajayyadavexpo@gmail.com"
},
{
"name": "Sushil Kumar",
"email": "sushilkumbhar77@gmail.com"
}
],
"require": {
"phpmailer/phpmailer": "^6.10",
"vlucas/phpdotenv": "^5.6"
},
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^12.3",
"mockery/mockery": "^1.6",
"fakerphp/faker": "^1.24",
"phpstan/phpstan": "^2.1",
"laravel/pint": "^1.24",
"phpunit/php-code-coverage": "^12.3"
}
}