-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
93 lines (93 loc) · 2.19 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "devmehq/sdk-php",
"version": "1.0.0",
"description": "DEV.ME SDK for PHP",
"keywords": [
"Email SMTP Verification",
"Email Verification",
"Currency Converstion Rates",
"Currency Exchange",
"Currency Converter",
"IP Geolocation",
"IP2Location",
"IP Info",
"IP Data",
"Phone Number Validation",
"OCR",
"Image to Text",
"Image to Text OCR",
"Text extractor",
"URL Shortener",
"Onetime Secret",
"Verification",
"Validation"
],
"homepage": "https://github.com/devmehq/devme-sdk-php",
"license": "MIT",
"type": "library",
"scripts": {
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests",
"install-dev": "composer install --no-interaction",
"install-prod": "composer install --no-dev --no-interaction",
"lint": "phplint",
"stan": "phpstan analyse src",
"test": "phpunit",
"test-cov": "phpunit --coverage-text --coverage-clover=coverage.xml",
"test-html": "phpunit --coverage-text --coverage-clover=coverage.xml --coverage-html=./report/",
"update-dev": "composer update",
"update-prod": "composer update --no-dev"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"process-timeout": 1000000,
"sort-packages": true
},
"authors": [
{
"name": "DEV.ME Team",
"homepage": "https://dev.me",
"email": "support@dev.me"
}
],
"autoload": {
"psr-4": {
"DevmeSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"platform": {
"php": ">=7.3.0"
},
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"symfony": {
"allow-contrib": "true"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7",
"guzzlehttp/psr7": "^1 || ^2",
"jane-php/open-api-runtime": "^7.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.64.0",
"overtrue/phplint": "9.5.3",
"phpstan/phpstan": "1.12.6",
"phpunit/phpunit": "10.5.36",
"squizlabs/php_codesniffer": "3.10.3"
}
}