Skip to content

Commit 564ea2b

Browse files
authored
Merge pull request #7 from czarpino/add-metadata-api-calls
Add metadata api wrapper methods
2 parents e03b1f3 + d12d571 commit 564ea2b

File tree

9 files changed

+1216
-9
lines changed

9 files changed

+1216
-9
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
/vendor/
2-
.idea
2+
.idea
3+
/composer.lock
4+
/phpunit.xml

composer.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,19 @@
44
"type": "library",
55
"license": "Apache-2.0",
66
"require": {
7-
"php": "^7.1"
7+
"php": "^7.1",
8+
"ext-json": "*",
9+
"ext-curl": "*"
810
},
911
"autoload": {
1012
"files": [
1113
"fccloudapi.php"
1214
]
15+
},
16+
"autoload-dev": {
17+
"psr-4": { "CodeLathe\\FileCloudApi\\Tests\\": "tests/" }
18+
},
19+
"require-dev": {
20+
"phpunit/phpunit": "^7.5.8"
1321
}
1422
}

0 commit comments

Comments
 (0)