-
-
Notifications
You must be signed in to change notification settings - Fork 215
/
composer.json
37 lines (37 loc) · 868 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
33
34
35
36
37
{
"name": "ktamas77/firebase-php",
"description": "Firebase PHP Client",
"homepage": "https://github.com/ktamas77/firebase-php",
"keywords": [
"firebase",
"REST",
"wrapper"
],
"version": "3.0.0",
"authors": [
{
"name": "Tamas Kalman",
"email": "ktamas77@gmail.com"
}
],
"scripts": {
"style": "vendor/squizlabs/php_codesniffer/bin/phpcs -p --encoding=utf-8 --standard=ruleset.xml --colors .",
"style-fix": "vendor/squizlabs/php_codesniffer/bin/phpcbf -p --encoding=utf-8 --standard=ruleset.xml --colors .",
"test": "vendor/phpunit/phpunit/phpunit"
},
"license": "MIT",
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-curl": "*"
},
"autoload": {
"classmap": [
"src"
]
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5"
}
}