-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.14 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
{
"name": "michaelbutler/phposh",
"description": "Unofficial PHP SDK for interacting with Poshmark",
"type": "library",
"homepage": "https://github.com/michaelbutler/phposh",
"license": "MIT",
"authors": [
{
"name": "Michael Butler",
"homepage": "https://butlerpc.net/"
}
],
"support": {
"issues": "https://github.com/michaelbutler/phposh/issues",
"source": "https://github.com/michaelbutler/phposh/tree/master"
},
"autoload": {
"files": [
"src/Shared/functions.php"
],
"psr-4": {
"PHPosh\\": "src/",
"PHPoshTests\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0",
"sndsgd/util": "^2.1",
"symfony/dom-crawler": "~4.0|~5.0",
"symfony/css-selector": "~4.0|~5.0",
"thecodingmachine/safe": "^0.1|^1.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "~7",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.25"
}
}