This repository has been archived by the owner on Feb 13, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
67 lines (67 loc) · 1.68 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
58
59
60
61
62
63
64
65
66
67
{
"name": "gamez/firebase-examples",
"license": "MIT",
"description": "Symfony 5 example application integrating https://github.com/kreait/firebase-php",
"require": {
"php": "^7.4|^8.0",
"ext-iconv": "*",
"ext-json": "*",
"kreait/firebase-bundle": "^4.0",
"sensio/framework-extra-bundle": "^5.4|^6.2",
"symfony/console": "^5.4|^6.0",
"symfony/dotenv": "^5.4|^6.0",
"symfony/flex": "^1.18|^2.0.1",
"symfony/yaml": "^5.4|^6.0"
},
"require-dev": {
"symfony/maker-bundle": "^1.22"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"chmod -R ug+w $APP_DIR/var",
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"id": "01CAGV79KEF5QRC8SQ9XGRH6B7",
"allow-contrib": false
}
}
}