mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-21 16:38:37 -06:00
181 lines
9.6 KiB
JSON
181 lines
9.6 KiB
JSON
{
|
|
"name": "shlinkio/shlink",
|
|
"type": "project",
|
|
"homepage": "https://shlink.io",
|
|
"description": "A self-hosted and PHP-based URL shortener application with CLI and REST interfaces",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Alejandro Celaya Alastrué",
|
|
"homepage": "https://www.alejandrocelaya.com",
|
|
"email": "alejandro@alejandrocelaya.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.2",
|
|
"ext-curl": "*",
|
|
"ext-gd": "*",
|
|
"ext-json": "*",
|
|
"ext-pdo": "*",
|
|
"akrabat/ip-address-middleware": "^2.1",
|
|
"cakephp/chronos": "^3.0.2",
|
|
"doctrine/dbal": "^4.0",
|
|
"doctrine/migrations": "^3.6",
|
|
"doctrine/orm": "^3.0",
|
|
"endroid/qr-code": "^5.0",
|
|
"friendsofphp/proxy-manager-lts": "^1.0",
|
|
"geoip2/geoip2": "^3.0",
|
|
"guzzlehttp/guzzle": "^7.5",
|
|
"jaybizzle/crawler-detect": "^1.2.116",
|
|
"laminas/laminas-config": "^3.8",
|
|
"laminas/laminas-config-aggregator": "^1.13",
|
|
"laminas/laminas-diactoros": "^3.3",
|
|
"laminas/laminas-inputfilter": "^2.27",
|
|
"laminas/laminas-servicemanager": "^3.21",
|
|
"laminas/laminas-stdlib": "^3.17",
|
|
"matomo/matomo-php-tracker": "^3.2",
|
|
"mezzio/mezzio": "^3.17",
|
|
"mezzio/mezzio-fastroute": "^3.11",
|
|
"mezzio/mezzio-problem-details": "^1.13",
|
|
"mlocati/ip-lib": "^1.18",
|
|
"mobiledetect/mobiledetectlib": "^4.8",
|
|
"pagerfanta/core": "^3.8",
|
|
"pugx/shortid-php": "^1.1",
|
|
"ramsey/uuid": "^4.7",
|
|
"shlinkio/doctrine-specification": "^2.1.1",
|
|
"shlinkio/shlink-common": "dev-main#3cb0845 as 6.1",
|
|
"shlinkio/shlink-config": "^3.0",
|
|
"shlinkio/shlink-event-dispatcher": "dev-main#a2a5d6f as 4.1",
|
|
"shlinkio/shlink-importer": "^5.3.1",
|
|
"shlinkio/shlink-installer": "^9.0",
|
|
"shlinkio/shlink-ip-geolocation": "^4.0",
|
|
"shlinkio/shlink-json": "^1.1",
|
|
"spiral/roadrunner": "^2023.3",
|
|
"spiral/roadrunner-cli": "^2.6",
|
|
"spiral/roadrunner-http": "^3.3",
|
|
"spiral/roadrunner-jobs": "^4.3",
|
|
"symfony/console": "^7.0",
|
|
"symfony/filesystem": "^7.0",
|
|
"symfony/lock": "^7.0",
|
|
"symfony/process": "^7.0",
|
|
"symfony/string": "^7.0"
|
|
},
|
|
"require-dev": {
|
|
"devizzent/cebe-php-openapi": "^1.0.1",
|
|
"devster/ubench": "^2.1",
|
|
"phpstan/phpstan": "^1.10",
|
|
"phpstan/phpstan-doctrine": "^1.3",
|
|
"phpstan/phpstan-phpunit": "^1.3",
|
|
"phpstan/phpstan-symfony": "^1.3",
|
|
"phpunit/php-code-coverage": "^10.1",
|
|
"phpunit/phpcov": "^9.0",
|
|
"phpunit/phpunit": "^10.4",
|
|
"roave/security-advisories": "dev-master",
|
|
"shlinkio/php-coding-standard": "~2.3.0",
|
|
"shlinkio/shlink-test-utils": "^4.1",
|
|
"symfony/var-dumper": "^7.0",
|
|
"veewee/composer-run-parallel": "^1.3"
|
|
},
|
|
"conflict": {
|
|
"symfony/var-exporter": ">=6.3.9,<=6.4.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Shlinkio\\Shlink\\CLI\\": "module/CLI/src",
|
|
"Shlinkio\\Shlink\\Rest\\": "module/Rest/src",
|
|
"Shlinkio\\Shlink\\Core\\": "module/Core/src"
|
|
},
|
|
"files": [
|
|
"config/constants.php",
|
|
"module/Core/functions/array-utils.php",
|
|
"module/Core/functions/functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"ShlinkioTest\\Shlink\\CLI\\": "module/CLI/test",
|
|
"ShlinkioCliTest\\Shlink\\CLI\\": "module/CLI/test-cli",
|
|
"ShlinkioTest\\Shlink\\Rest\\": "module/Rest/test",
|
|
"ShlinkioApiTest\\Shlink\\Rest\\": "module/Rest/test-api",
|
|
"ShlinkioDbTest\\Shlink\\Rest\\": "module/Rest/test-db",
|
|
"ShlinkioTest\\Shlink\\Core\\": "module/Core/test",
|
|
"ShlinkioDbTest\\Shlink\\Core\\": "module/Core/test-db",
|
|
"ShlinkioApiTest\\Shlink\\Core\\": "module/Core/test-api"
|
|
},
|
|
"files": [
|
|
"config/test/constants.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"ci": [
|
|
"@parallel cs stan swagger:validate test:unit:ci test:db:sqlite:ci test:db:postgres test:db:mysql test:db:maria test:db:ms",
|
|
"@parallel test:api:ci test:cli:ci"
|
|
],
|
|
"cs": "phpcs -s",
|
|
"cs:fix": "phpcbf",
|
|
"stan": "APP_ENV=test php vendor/bin/phpstan analyse module/*/src module/*/test* module/*/config module/*/migrations config docker/config --level=8",
|
|
"test": [
|
|
"@parallel test:unit test:db",
|
|
"@parallel test:api test:cli"
|
|
],
|
|
"test:unit": "@php vendor/bin/phpunit --order-by=random --colors=always --testdox",
|
|
"test:unit:ci": "@test:unit --coverage-php=build/coverage-unit.cov",
|
|
"test:unit:pretty": "@test:unit --coverage-html build/coverage-unit/coverage-html",
|
|
"test:db": "@parallel test:db:sqlite:ci test:db:mysql test:db:maria test:db:postgres test:db:ms",
|
|
"test:db:sqlite": "APP_ENV=test php vendor/bin/phpunit --order-by=random --colors=always --testdox -c phpunit-db.xml",
|
|
"test:db:sqlite:ci": "@test:db:sqlite --coverage-php build/coverage-db.cov",
|
|
"test:db:mysql": "DB_DRIVER=mysql composer test:db:sqlite -- $*",
|
|
"test:db:maria": "DB_DRIVER=maria composer test:db:sqlite -- $*",
|
|
"test:db:postgres": "DB_DRIVER=postgres composer test:db:sqlite -- $*",
|
|
"test:db:ms": "DB_DRIVER=mssql composer test:db:sqlite -- $*",
|
|
"test:api": "bin/test/run-api-tests.sh",
|
|
"test:api:sqlite": "DB_DRIVER=sqlite composer test:api -- $*",
|
|
"test:api:mysql": "DB_DRIVER=mysql composer test:api -- $*",
|
|
"test:api:maria": "DB_DRIVER=maria composer test:api -- $*",
|
|
"test:api:mssql": "DB_DRIVER=mssql composer test:api -- $*",
|
|
"test:api:ci": "GENERATE_COVERAGE=yes composer test:api && vendor/bin/phpcov merge build/coverage-api --php build/coverage-api.cov && rm build/coverage-api/*.cov",
|
|
"test:api:pretty": "GENERATE_COVERAGE=yes composer test:api && vendor/bin/phpcov merge build/coverage-api --html build/coverage-api/coverage-html && rm build/coverage-api/*.cov",
|
|
"test:cli": "APP_ENV=test DB_DRIVER=maria TEST_ENV=cli php vendor/bin/phpunit --order-by=random --colors=always --testdox -c phpunit-cli.xml",
|
|
"test:cli:ci": "GENERATE_COVERAGE=yes composer test:cli && vendor/bin/phpcov merge build/coverage-cli --php build/coverage-cli.cov && rm build/coverage-cli/*.cov",
|
|
"test:cli:pretty": "GENERATE_COVERAGE=yes composer test:cli && vendor/bin/phpcov merge build/coverage-cli --html build/coverage-cli/coverage-html && rm build/coverage-cli/*.cov",
|
|
"swagger:validate": "php-openapi validate docs/swagger/swagger.json",
|
|
"swagger:inline": "php-openapi inline docs/swagger/swagger.json docs/swagger/swagger-inlined.json",
|
|
"clean:dev": "rm -f data/database.sqlite && rm -f config/params/generated_config.php"
|
|
},
|
|
"scripts-descriptions": {
|
|
"ci": "<fg=blue;options=bold>Alias for \"cs\", \"stan\", \"swagger:validate\" and \"test:ci\"</>",
|
|
"cs": "<fg=blue;options=bold>Checks coding styles</>",
|
|
"cs:fix": "<fg=blue;options=bold>Fixes coding styles, when possible</>",
|
|
"stan": "<fg=blue;options=bold>Inspects code with phpstan</>",
|
|
"test": "<fg=blue;options=bold>Runs all test suites</>",
|
|
"test:unit": "<fg=blue;options=bold>Runs unit test suites</>",
|
|
"test:unit:ci": "<fg=blue;options=bold>Runs unit test suites, generating all needed reports and logs for CI envs</>",
|
|
"test:unit:pretty": "<fg=blue;options=bold>Runs unit test suites and generates an HTML code coverage report</>",
|
|
"test:db": "<fg=blue;options=bold>Runs database test suites on a SQLite, MySQL, MariaDB, PostgreSQL and MsSQL</>",
|
|
"test:db:sqlite": "<fg=blue;options=bold>Runs database test suites on a SQLite database</>",
|
|
"test:db:sqlite:ci": "<fg=blue;options=bold>Runs database test suites on a SQLite database, generating all needed reports and logs for CI envs</>",
|
|
"test:db:mysql": "<fg=blue;options=bold>Runs database test suites on a MySQL database</>",
|
|
"test:db:maria": "<fg=blue;options=bold>Runs database test suites on a MariaDB database</>",
|
|
"test:db:postgres": "<fg=blue;options=bold>Runs database test suites on a PostgreSQL database</>",
|
|
"test:db:ms": "<fg=blue;options=bold>Runs database test suites on a Microsoft SQL Server database</>",
|
|
"test:api": "<fg=blue;options=bold>Runs API test suites</>",
|
|
"test:api:ci": "<fg=blue;options=bold>Runs API test suites, and generates code coverage for CI</>",
|
|
"test:api:pretty": "<fg=blue;options=bold>Runs API test suites, and generates code coverage in HTML format</>",
|
|
"test:cli": "<fg=blue;options=bold>Runs CLI test suites</>",
|
|
"test:cli:ci": "<fg=blue;options=bold>Runs CLI test suites, and generates code coverage for CI</>",
|
|
"test:cli:pretty": "<fg=blue;options=bold>Runs CLI test suites, and generates code coverage in HTML format</>",
|
|
"swagger:validate": "<fg=blue;options=bold>Validates the swagger docs, making sure they fulfil the spec</>",
|
|
"swagger:inline": "<fg=blue;options=bold>Inlines swagger docs in a single file</>",
|
|
"clean:dev": "<fg=blue;options=bold>Deletes artifacts which are gitignored and could affect dev env</>"
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"platform-check": false,
|
|
"allow-plugins": {
|
|
"composer/package-versions-deprecated": true,
|
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
|
"veewee/composer-run-parallel": true
|
|
}
|
|
}
|
|
}
|