forked from srdjanmitrovic/phalcon-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.4 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": "kevinhoo/phalcon-compose",
"description": "Open-source and community-driven boilerplate for Phalcon projects by using Docker and Docker Compose",
"keywords": ["phalcon", "docker", "compose", "boilerplate", "skeleton"],
"license": "MIT",
"type": "project",
"homepage": "https://phalcon-compose.readme.io/",
"authors": [
{
"name": "Phalcon Team",
"email": "team@phalconphp.com",
"homepage": "https://phalconphp.com/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/phalcon-compose/graphs/contributors"
}
],
"support": {
"source": "https://github.com/phalcon/phalcon-compose",
"issues": "https://github.com/phalcon/phalcon-compose/issues",
"docs": "https://phalcon-compose.readme.io/",
"forum": "https://forum.phalconphp.com/",
"wiki": "https://github.com/phalcon/cphalcon/wiki",
"irc": "irc://irc.freenode.org/phalcon-compose",
"rss" : "https://blog.phalconphp.com/rss"
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('variables.env') || copy('variables.env.example', 'variables.env');\""
]
},
"extra": {
"phalcon-project-path": "/project",
"phalcon-cache-path": "/project/cache",
"phalcon-logs-path": "/project/logs"
}
}