-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.45 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
42
43
44
45
46
47
48
{
"name": "morgo/php-starter-kit-web",
"description": "PHP Starter kit for website",
"type": "library",
"license": "MIT",
"version": "1.0",
"keywords": ["php", "starter kit", "website"],
"homepage": "https://github.com/tonda13/php-starter-kit-web",
"support": {
"issues": "https://github.com/tonda13/php-starter-kit-web/issues",
"source": "https://github.com/tonda13/php-starter-kit-web"
},
"minimum-stability": "dev",
"readme": "README.md",
"require": {
"psr/http-message": "^1.0@dev",
"psr/http-factory": "^1.0@dev",
"psr/http-server-middleware": "^1.0@dev",
"relay/relay": "~2.0",
"psr/http-server-handler": "^1.0@dev",
"guzzlehttp/psr7": "^2.0@dev",
"morgo/dumpf": "dev-master",
"middlewares/fast-route": "dev-master",
"middlewares/request-handler": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "9.6.x-dev",
"squizlabs/php_codesniffer": "4.0.x-dev",
"phpstan/phpstan": "1.10.x-dev",
"robmorgan/phinx": "0.x-dev"
},
"authors": [
{
"name": "Antonin Neumann",
"email": "[email protected]",
"homepage": "http://tonda.info"
}
],
"autoload": {
"psr-4": {
"Morgo\\": ["src/", "tests/"]
},
"files": ["etc/functions.php"]
},
"scripts": {
"localhost": "php -S localhost:8000"
}
}