stun/composer.json

30 lines
707 B
JSON
Raw Normal View History

2023-09-01 21:35:25 +02:00
{
"name": "danog/stun",
"description": "Pure PHP async implementation of STUN",
"type": "library",
2023-09-01 22:33:44 +02:00
"license": "AGPL-3.0-only",
2023-09-01 21:35:25 +02:00
"require": {
"php-64bit": ">=8.1.17",
"amphp/socket": "^2.2",
2023-09-01 22:12:36 +02:00
"webmozart/assert": "^1.11",
"psalm/phar": "^5.15"
2023-09-01 21:35:25 +02:00
},
2023-09-01 22:06:02 +02:00
"require-dev": {
"amphp/php-cs-fixer-config": "v2.x-dev"
},
2023-09-01 21:35:25 +02:00
"autoload": {
"psr-4": {
2023-09-01 22:01:39 +02:00
"danog\\Stun\\": "src/"
2023-09-01 21:35:25 +02:00
}
},
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
2023-09-01 22:06:02 +02:00
],
"scripts": {
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php -d pcre.jit=0 vendor/bin/php-cs-fixer fix -v"
}
2023-09-01 21:35:25 +02:00
}