This repository was archived by the owner on Jul 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.41 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.41 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
58
59
60
61
{
"name": "miway/hacktoberfest",
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.1",
"knplabs/github-api": "^2.6",
"php-http/guzzle6-adapter": "^1.1",
"symfony/asset": "^3.3",
"symfony/browser-kit": "^3.3",
"symfony/cache": "^3.3",
"symfony/console": "^3.3",
"symfony/framework-bundle": "^3.3",
"symfony/twig-bundle": "^3.3",
"symfony/web-server-bundle": "^3.3",
"symfony/yaml": "^3.3"
},
"require-dev": {
"symfony/flex": "^1.0",
"symfony/dotenv": "^3.3",
"symfony/phpunit-bridge": "^3.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"make cache-warmup": "script"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*",
"symfony/twig-bundle": "<3.3",
"symfony/debug": "<3.3"
},
"extra": {
"symfony": {
"id": "01BVRRFV5CN78HTY7YZAHEP96Q",
"allow-contrib": false
}
}
}