-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 810 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 810 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
{
"name": "penate/server",
"description": "Open source, in-memory key value storage written in PHP.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Alexandr Chernyaev",
"email": "bliz48rus@gmail.com",
"homepage": "https://tabuna.github.io",
"role": "Developer"
}
],
"require": {
"php": "^7.2.0",
"ext-json": "*",
"react/event-loop": "^1.0",
"react/http": "^0.8.3",
"vlucas/phpdotenv": "^2.5",
"illuminate/support": "^5.7"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"symfony/var-dumper": "^4.2"
},
"autoload": {
"psr-4": {
"Penate\\Server\\": "src/"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}