-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.6 KB
/
Copy pathcomposer.json
File metadata and controls
57 lines (57 loc) · 1.6 KB
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": "ronanchilvers/deploy",
"description": "A tool for simple deployments from common source control providers.",
"type": "project",
"require": {
"defuse/php-encryption": "^2.1",
"dflydev/fig-cookies": "^1.0",
"guzzlehttp/guzzle": "^6.4",
"monolog/monolog": "^1.23",
"pda/pheanstalk": "^4.0",
"php": "^7.3||^8.0",
"respect/validation": "^1.1",
"robmorgan/phinx": "^0.12.0",
"ronanchilvers/container-bridge-slim": "~1.0",
"ronanchilvers/foundation": "^1.0",
"ronanchilvers/orm": "^1.0",
"ronanchilvers/sessions": "^2.0",
"ronanchilvers/utility": "^1.0",
"slim/slim": "^3.9",
"slim/twig-view": "^2.3",
"symfony/console": "^5.0",
"symfony/process": "^5.0",
"symfony/yaml": "^5.0"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^1.0",
"mikey179/vfsstream": "^1.6",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^9.0"
},
"authors": [
{
"name": "Ronan Chilvers",
"email": "ronan@thelittledot.com"
}
],
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests"
}
},
"config": {
"process-timeout" : 0,
"platform": {
"php": "7.3.0"
}
},
"scripts": {
"serve": "/usr/bin/env php -S 0.0.0.0:8001 -t web",
"gulp": "([ -d ./node_modules ] || npm install) && ./node_modules/.bin/gulp"
}
}