AzuraCast/composer.json

155 lines
4.4 KiB
JSON

{
"name": "azuracast/azuracast",
"description": "The AzuraCast self-hosted web radio station management suite.",
"license": "Apache-2.0",
"type": "project",
"require": {
"php": ">=7.4",
"ext-PDO": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-redis": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"azuracast/azuraforms": "dev-master",
"azuracast/nowplaying": "dev-master",
"bacon/bacon-qr-code": "^2.0",
"bernard/bernard": "dev-master",
"brick/math": "^0.8.4",
"cache/array-adapter": "^1.0",
"cache/prefixed-cache": "^1.0",
"cache/psr-6-doctrine-bridge": "^3.0",
"cache/redis-adapter": "^1.0",
"cakephp/chronos": "^1.1",
"composer/ca-bundle": "^1.2",
"doctrine/annotations": "^1.6",
"doctrine/data-fixtures": "^1.3",
"doctrine/dbal": "^2.8",
"doctrine/migrations": "^2",
"doctrine/orm": "~2.6",
"gettext/gettext": "^4.4",
"guzzlehttp/guzzle": ">6.0",
"guzzlehttp/oauth-subscriber": "^0.3.0",
"http-interop/http-factory-guzzle": "^1.0",
"influxdb/influxdb-php": "^1.14.3",
"james-heinrich/getid3": "dev-master",
"jhofm/flysystem-iterator": "^2.1",
"laminas/laminas-config": "^3.3",
"league/flysystem": "^1.0",
"league/flysystem-aws-s3-v3": "^1.0",
"league/flysystem-cached-adapter": "^1.0",
"league/plates": "^3.1",
"lstrojny/fxmlrpc": "^0.14.0",
"malkusch/lock": "^2.1",
"maxmind-db/reader": "~1.0",
"mezzio/mezzio-session": "^1.3",
"mezzio/mezzio-session-cache": "^1.3",
"mnapoli/silly-php-di": "^1.2",
"mobiledetect/mobiledetectlib": "^2.8",
"monolog/monolog": "^2",
"myclabs/deep-copy": "^1.9",
"ocramius/doctrine-batch-utils": "^2.0",
"php-di/php-di": "^6.0",
"php-di/slim-bridge": "^3.0",
"php-http/guzzle6-adapter": "^1.1",
"php-http/message": "^1.4",
"php-http/socket-client": "^1.2",
"ramsey/uuid": "^3.8",
"rlanvin/php-ip": "^2.0",
"sentry/sentry": "^2",
"slim/http": "^0.8",
"slim/slim": "^4.2",
"spomky-labs/otphp": "^9.1",
"studio24/rotate": "^1.0",
"supervisorphp/supervisor": "^3.0",
"symfony/console": "^4.3",
"symfony/event-dispatcher": "^4.3",
"symfony/finder": "^4.3",
"symfony/process": "^4.3",
"symfony/property-access": "^4.3",
"symfony/serializer": "^4.3",
"symfony/validator": "^4.3",
"voku/portable-utf8": "^5.4",
"wikimedia/composer-merge-plugin": "^1.4",
"zircote/swagger-php": "dev-master#e61cfa2a4f8d7cc4356ba7450647844463ee7407"
},
"require-dev": {
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.1",
"codeception/module-cli": "^1.0",
"codeception/module-doctrine2": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.0",
"filp/whoops": "^2",
"flow/jsonpath": "^0.5",
"mockery/mockery": "^1.0",
"overtrue/phplint": "^1.1",
"phpstan/phpstan": "^0.11.1",
"phpstan/phpstan-doctrine": "^0.11.0",
"phpstan/phpstan-strict-rules": "^0.11.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "3.*"
},
"replace": {
"symfony/polyfill-php56": "1.99",
"symfony/polyfill-php72": "1.99",
"symfony/polyfill-iconv": "1.99",
"symfony/polyfill-intl-grapheme": "1.99",
"symfony/polyfill-intl-normalizer": "1.99",
"symfony/polyfill-mbstring": "1.99"
},
"scripts": {
"dev-test": [
"@phplint",
"@phpstan",
"@codeception-no-coverage"
],
"phplint": "phplint",
"phpstan": "phpstan analyze",
"codeception": "codecept run --no-interaction --coverage --coverage-xml --fail-fast",
"codeception-no-coverage": "codecept run --no-interaction",
"ci-import-locales": [
"@composer install",
"bin/console locale:import"
]
},
"authors": [
{
"name": "Buster Neece",
"email": "buster@busterneece.com"
}
],
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"bin": [
"bin/console"
],
"config": {
"preferred-install": "dist"
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"merge-plugin": {
"include": [
"plugins/*/composer.json"
],
"recurse": true,
"replace": true,
"ignore-duplicates": false,
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false
}
}
}