-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.03 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
{
"name": "0limits91/fast-framework",
"description": "Fast is a fast, simple, extensible framework for PHP. Fast enables you to quickly and easily build RESTful web applications.",
"type": "library",
"version": "0.0.1",
"keywords": ["php", "fast", "web", "framework", "router", "application"],
"homepage": "https://github.com/0limits91/fast-framework",
"license": "MIT",
"authors": [
{
"name": "Francesco Cappa",
"email": "[email protected]",
"homepage": "https://francescocappa.it/",
"role": "Developer"
}
],
"require": {
"ext-json": "*",
"php": ">=7.2.0",
"rakibtg/sleekdb": "^2.15"
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"FastFramework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FastFramework\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}