forked from ktamas77/firebase-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 853 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 853 Bytes
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
{
"name": "ktamas77/firebase-php",
"description": "Firebase PHP Client",
"homepage": "https://github.com/ktamas77/firebase-php",
"keywords": [
"firebase",
"REST",
"wrapper"
],
"version": "2.2.2",
"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 tests/firebaseStubTest.php"
},
"license": "MIT",
"require": {
"php": ">=5.4.0"
},
"autoload": {
"classmap": [
"src"
]
},
"require-dev": {
"phpunit/phpunit": "^5",
"squizlabs/php_codesniffer": "^3.4"
}
}