linkmobility-php-client/composer.json

52 lines
1.5 KiB
JSON
Raw Normal View History

2022-06-20 14:47:33 +02:00
{
"name": "d3/linkmobility-php-client",
"type": "library",
2022-09-29 09:12:10 +02:00
"description": "PHP client for LINK Mobility API",
2022-06-20 14:47:33 +02:00
"keywords": [
2022-07-13 11:05:00 +02:00
"LINK Mobility",
2022-06-20 14:47:33 +02:00
"php",
"sms",
2022-07-13 11:05:00 +02:00
"message gateway"
2022-06-20 14:47:33 +02:00
],
"homepage": "https://d3data.de/",
"authors": [
{
"name": "D3 Data Development (Inh. Thomas Dartsch)",
"email": "info@shopmodule.com",
"homepage": "https://www.d3data.de",
"role": "Owner"
}
],
2022-07-13 11:05:00 +02:00
"license": [
"GPL-3.0-or-later"
],
2022-06-20 14:47:33 +02:00
"require": {
2023-01-17 20:38:20 +01:00
"php": "^7.3 || ^8.0.3",
"beberlei/assert": "^3.3",
"guzzlehttp/guzzle": "^7.3",
2023-06-29 10:43:16 +02:00
"psr/http-message": "^1.0 || ^2.0",
"phlib/sms-length": "^2.0",
2022-06-24 16:00:56 +02:00
"giggsey/libphonenumber-for-php": "^8.12.50",
"caseyamcl/guzzle_retry_middleware": "^2.8",
2022-06-24 16:00:56 +02:00
"ext-json": "*"
2022-06-20 14:47:33 +02:00
},
"require-dev": {
"php": "^7.4 || ~8.0.3",
"phpunit/phpunit" : "^9.5",
2022-07-21 00:15:04 +02:00
"friendsofphp/php-cs-fixer": "^3.9",
"phpstan/phpstan": "^1.8"
2022-06-20 14:47:33 +02:00
},
"autoload": {
"psr-4": {
2022-07-09 22:16:46 +02:00
"D3\\LinkmobilityClient\\": "src",
"D3\\LinkmobilityClient\\Tests\\": "Tests"
2022-06-20 14:47:33 +02:00
}
},
"scripts": {
2022-07-21 11:03:37 +02:00
"test": "./vendor/bin/phpunit",
2022-06-20 14:47:33 +02:00
"check-style": "./vendor/bin/php-cs-fixer fix --verbose --dry-run",
2022-07-21 11:03:37 +02:00
"fix-style": "./vendor/bin/php-cs-fixer fix --verbose",
2022-07-21 14:07:10 +02:00
"check-code": "./vendor/bin/phpstan analyse -c phpstan.neon --no-progress --ansi"
2022-06-20 14:47:33 +02:00
}
}