This repository has been archived by the owner on Oct 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·57 lines (57 loc) · 1.63 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
49
50
51
52
53
54
55
56
57
{
"name": "droath/project-x",
"description": "Manage project development workflow.",
"homepage": "https://github.com/droath/project-x",
"keywords": ["project", "docker", "project-x" ],
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"authors": [
{
"name": "Travis Tomka",
"email": "[email protected]"
}
],
"bin": [
"bin/project-x"
],
"config": {
"bin-dir": "bin/"
},
"require": {
"php": ">=5.5",
"symfony/cache": "^3.2",
"symfony/yaml": "2.8|^3.0",
"symfony/serializer": "2.8|^3.0",
"symfony/property-access": "2.8|^3.0",
"symfony/finder": "^2.8|^3.0|^4.0",
"symfony/console": "^2.8|^3.0",
"consolidation/Robo": "^1.0",
"geerlingguy/ping": "^1.1",
"boedah/robo-drush": "^3.0",
"droath/console-form": "~0.0.8",
"droath/robo-github": "^0.0.2",
"droath/robo-docker-compose": "^0.0.8",
"droath/robo-google-lighthouse": "^1.0",
"droath/robo-docker-sync": "^0.0.1",
"droath/hostsfile-manager": "^0.0.1",
"paragonie/random_compat": "^2.0",
"fitbug/symfony-yaml-serializer-encoder-decoder": "^0.1.1",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"mikey179/vfsStream": "^1.6",
"squizlabs/php_codesniffer": "^2.8"
},
"autoload": {
"psr-4": {
"Droath\\ProjectX\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Droath\\ProjectX\\Tests\\": "./tests"
}
}
}