-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.06 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
{
"name": "ahmard/utiweb",
"description": "Web version of ahmard/uticlass",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Ahmad Mustapha",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-pdo": "*",
"ahmard/quick-route": "^3.9",
"ahmard/uticlass": "^2.0",
"twig/twig": "^3.5",
"vlucas/phpdotenv": "^5.5",
"symfony/validator": "^6.2",
"firebase/php-jwt": "^6.3",
"laminas/laminas-diactoros": "^2.24",
"laminas/laminas-stratigility": "^3.9",
"ahmard/php-server": "^0.0.5"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12.58"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"scripts": {
"analyse" : "vendor/bin/phpstan analyse",
"post-autoload-dump": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}