-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (37 loc) · 1 KB
/
composer.json
File metadata and controls
38 lines (37 loc) · 1 KB
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
{
"name": "ready2order/r2o-api-client-php",
"description": "PHP library for ready2order POS API v1",
"replace": {
"duxthefux/ready2order-php-api-v1" : "1.*"
},
"license": "MIT",
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5 || ^10.0",
"vlucas/phpdotenv": "^5.0",
"symfony/var-dumper": "^5.1 || ^6.0 || ^7.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"ready2order\\": "src",
"ready2order\\Tests\\": "tests"
}
},
"scripts": {
"lint": "php-cs-fixer fix --path-mode=intersection ."
},
"homepage": "https://github.com/ready2order/r2o-api-client-php",
"authors": [
{
"name": "ready2order GmbH",
"email": "operations@ready2order.com",
"homepage": "http://www.ready2order.com"
}
]
}