-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·40 lines (40 loc) · 912 Bytes
/
composer.json
File metadata and controls
executable file
·40 lines (40 loc) · 912 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
38
39
40
{
"name": "alexandre-gerault/framwork-php",
"description": "A modern PHP framework",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexandre Gérault",
"email": "alexandre@hexium.io"
}
],
"autoload": {
"psr-4": {
"AGerault\\Framework\\": "src/AGerault"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"psr/http-message": "^1.0",
"psr/simple-cache": "^1.0",
"ext-pdo": "*",
"psr/http-server-handler": "^1.0",
"beberlei/assert": "^3.3",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"pestphp/pest": "^1.0",
"symfony/var-dumper": "^5.2",
"guzzlehttp/guzzle": "^7.2",
"phpstan/phpstan": "^0.12.82",
"jetbrains/phpstorm-attributes": "^1.0",
"friendsofphp/php-cs-fixer": "^v3.0.0",
"pestphp/pest-plugin-mock": "^1.0"
}
}