mirror of
https://github.com/danog/stun.git
synced 2024-11-26 20:14:44 +01:00
30 lines
700 B
JSON
30 lines
700 B
JSON
{
|
|
"name": "danog/stun",
|
|
"description": "Pure PHP async implementation of STUN",
|
|
"type": "library",
|
|
"require": {
|
|
"php-64bit": ">=8.1.17",
|
|
"amphp/socket": "^2.2",
|
|
"webmozart/assert": "^1.11",
|
|
"psalm/phar": "^5.15"
|
|
},
|
|
"require-dev": {
|
|
"amphp/php-cs-fixer-config": "v2.x-dev"
|
|
},
|
|
"license": "AGPLv3",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"danog\\Stun\\": "src/"
|
|
}
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Daniil Gentili",
|
|
"email": "daniil@daniil.it"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php -d pcre.jit=0 vendor/bin/php-cs-fixer fix -v"
|
|
}
|
|
}
|