-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 978 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 978 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
36
{
"name": "davesweb/bricklink-api",
"description": "A PHP wrapper around the Bricklink API",
"keywords": ["API", "Bricklink", "Lego", "PHP", "Bricks"],
"type": "library",
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/oauth-subscriber": "^0.6.0",
"jawira/case-converter": "^3.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "9.5"
},
"autoload": {
"psr-4": {
"Davesweb\\BrinklinkApi\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Davesweb\\BrinklinkApi\\Tests\\": "tests/"
}
},
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit tests --colors --testdox",
"cs-fixer": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
}
}