-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
32 lines (32 loc) · 931 Bytes
/
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
{
"name": "phpexperts/docker",
"description": "The quickest and easiest way to switch any PHP app/library to use Docker.",
"keywords": [
"docker",
"dockerize",
"new project"
],
"homepage": "https://www.phpexperts.pro/",
"license": "MIT",
"authors": [
{
"name": "PHP Experts, Inc.",
"homepage": "https://www.phpexperts.pro/"
},
{
"name": "Theodore R. Smith",
"homepage": "https://www.linkedin.com/in/tedrsmith"
}
],
"suggest": {
"phpexperts/docker-phan": "Dockerized phan/phan",
"phpexperts/docker-phpstan": "Dockerized phpstan/phpstan",
"phpexperts/docker-rector": "Dockerized rector/rector"
},
"scripts": {
"post-install-cmd": [
"vendor/bin/php dockerize"
]
},
"bin": ["bin/php", "bin/composer", "bin/php-ci.sh"]
}