shlink/composer.json

179 lines
8.6 KiB
JSON
Raw Normal View History

2016-04-10 10:38:07 +03:00
{
2016-07-19 17:30:48 +03:00
"name": "shlinkio/shlink",
2016-04-10 10:38:07 +03:00
"type": "project",
"homepage": "https://shlink.io",
"description": "A self-hosted and PHP-based URL shortener application with CLI and REST interfaces",
2016-04-10 10:38:07 +03:00
"license": "MIT",
"authors": [
{
"name": "Alejandro Celaya Alastrué",
"homepage": "https://www.alejandrocelaya.com",
2016-04-10 10:38:07 +03:00
"email": "alejandro@alejandrocelaya.com"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-pdo": "*",
"akrabat/ip-address-middleware": "^2.0",
2020-11-06 20:58:07 +03:00
"cakephp/chronos": "^2.0",
"cocur/slugify": "^4.0",
"doctrine/cache": "^1.9",
"doctrine/migrations": "^3.1.1",
"doctrine/orm": "^2.8.4",
2021-02-28 18:41:52 +03:00
"endroid/qr-code": "^4.0",
2018-11-11 14:04:42 +03:00
"geoip2/geoip2": "^2.9",
2021-08-01 10:57:34 +03:00
"guzzlehttp/guzzle": "^7.3",
"happyr/doctrine-specification": "^2.0",
"jaybizzle/crawler-detect": "^1.2",
2021-08-01 10:57:34 +03:00
"laminas/laminas-config": "^3.5",
"laminas/laminas-config-aggregator": "^1.5",
"laminas/laminas-diactoros": "^2.6",
2020-01-01 23:11:53 +03:00
"laminas/laminas-inputfilter": "^2.10",
2021-08-01 10:57:34 +03:00
"laminas/laminas-servicemanager": "^3.7",
2020-01-01 23:11:53 +03:00
"laminas/laminas-stdlib": "^3.2",
2020-11-29 14:54:22 +03:00
"lcobucci/jwt": "^4.0",
"league/uri": "^6.2",
"lstrojny/functional-php": "^1.17",
2021-08-01 10:57:34 +03:00
"mezzio/mezzio": "^3.5",
"mezzio/mezzio-fastroute": "^3.2",
"mezzio/mezzio-problem-details": "^1.4",
"mezzio/mezzio-swoole": "^3.3",
2021-08-01 10:57:34 +03:00
"monolog/monolog": "^2.3",
2020-12-19 12:04:00 +03:00
"nikolaposa/monolog-factory": "^3.1",
2020-12-31 15:28:06 +03:00
"ocramius/proxy-manager": "^2.11",
"pagerfanta/core": "^2.5",
"php-middleware/request-id": "^4.1",
"predis/predis": "^1.1",
"pugx/shortid-php": "^0.7",
"ramsey/uuid": "^3.9",
"shlinkio/shlink-common": "^3.7",
"shlinkio/shlink-config": "^1.0",
2021-02-13 13:39:51 +03:00
"shlinkio/shlink-event-dispatcher": "^2.1",
"shlinkio/shlink-importer": "^2.3",
"shlinkio/shlink-installer": "dev-develop#fa6a4ca as 6.1",
"shlinkio/shlink-ip-geolocation": "^2.0",
"symfony/console": "^5.1",
"symfony/filesystem": "^5.1",
"symfony/lock": "^5.1",
2021-04-02 10:46:02 +03:00
"symfony/mercure": "^0.5.1",
"symfony/process": "^5.1",
2020-06-28 11:06:49 +03:00
"symfony/string": "^5.1"
2016-04-10 10:38:07 +03:00
},
"require-dev": {
"devster/ubench": "^2.1",
"dms/phpunit-arraysubset-asserts": "^0.3.0",
"eaglewu/swoole-ide-helper": "dev-master",
2021-08-01 10:57:34 +03:00
"infection/infection": "^0.24.0",
2020-11-02 13:50:19 +03:00
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^0.12.93",
"phpstan/phpstan-doctrine": "^0.12.42",
"phpstan/phpstan-symfony": "^0.12.41",
2020-11-02 13:50:19 +03:00
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.5",
2019-02-04 21:43:21 +03:00
"roave/security-advisories": "dev-master",
2020-11-02 13:50:19 +03:00
"shlinkio/php-coding-standard": "~2.1.1",
"shlinkio/shlink-test-utils": "^2.1",
"symfony/var-dumper": "^5.2",
2021-07-20 13:51:07 +03:00
"veewee/composer-run-parallel": "^1.0"
2016-04-10 10:38:07 +03:00
},
"autoload": {
"psr-4": {
2016-07-19 17:50:02 +03:00
"Shlinkio\\Shlink\\CLI\\": "module/CLI/src",
"Shlinkio\\Shlink\\Rest\\": "module/Rest/src",
"Shlinkio\\Shlink\\Core\\": "module/Core/src"
},
"files": [
"module/Core/functions/functions.php"
]
2016-04-10 10:38:07 +03:00
},
"autoload-dev": {
"psr-4": {
2016-07-19 17:50:02 +03:00
"ShlinkioTest\\Shlink\\CLI\\": "module/CLI/test",
"ShlinkioTest\\Shlink\\Rest\\": "module/Rest/test",
2019-01-26 12:19:20 +03:00
"ShlinkioApiTest\\Shlink\\Rest\\": "module/Rest/test-api",
"ShlinkioTest\\Shlink\\Core\\": [
"module/Core/test",
"module/Core/test-db"
]
2020-09-26 11:43:50 +03:00
},
"files": [
"config/test/constants.php"
]
2016-04-10 10:38:07 +03:00
},
"scripts": {
"ci": [
"@cs",
"@stan",
"@test:ci",
"@infect:ci"
],
"ci:parallel": [
"@parallel cs stan test:unit:ci test:db:sqlite:ci test:db:mysql test:db:maria test:db:postgres test:db:ms",
"@parallel test:api infect:ci:unit infect:ci:db"
],
2016-04-10 10:38:07 +03:00
"cs": "phpcs",
"cs:fix": "phpcbf",
"stan": "APP_ENV=test php vendor/bin/phpstan analyse module/*/src module/*/config config docker/config data/migrations --level=8",
"test": [
"@test:unit",
"@test:db",
"@test:api"
],
"test:ci": [
"@test:unit:ci",
"@test:db",
"@test:api"
],
2020-09-26 11:43:50 +03:00
"test:unit": "@php vendor/bin/phpunit --order-by=random --colors=always --coverage-php build/coverage-unit.cov --testdox",
"test:unit:ci": "@test:unit --coverage-xml=build/coverage-unit/coverage-xml --log-junit=build/coverage-unit/junit.xml",
"test:unit:pretty": "@php vendor/bin/phpunit --order-by=random --colors=always --coverage-html build/coverage-unit-html",
"test:db": "@parallel test:db:sqlite:ci test:db:mysql test:db:maria test:db:postgres test:db:ms",
2020-09-26 11:43:50 +03:00
"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 --coverage-xml=build/coverage-db/coverage-xml --log-junit=build/coverage-db/junit.xml",
"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",
2020-02-03 23:20:40 +03:00
"test:db:ms": "DB_DRIVER=mssql composer test:db:sqlite",
2019-01-27 12:54:04 +03:00
"test:api": "bin/test/run-api-tests.sh",
"infect:ci:base": "infection --threads=4 --log-verbosity=default --only-covered --skip-initial-tests",
"infect:ci:unit": "@infect:ci:base --coverage=build/coverage-unit --min-msi=80",
"infect:ci:db": "@infect:ci:base --coverage=build/coverage-db --min-msi=95 --configuration=infection-db.json",
"infect:ci": "@parallel infect:ci:unit infect:ci:db",
2018-11-17 19:36:22 +03:00
"infect:test": [
"@parallel test:unit:ci test:db:sqlite:ci",
2018-11-17 19:36:22 +03:00
"@infect:ci"
2019-11-17 12:00:29 +03:00
],
"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\", \"test:ci\" and \"infect:ci\"</>",
2021-01-01 13:19:57 +03:00
"ci:parallel": "<fg=blue;options=bold>Same as \"ci\", but parallelizing tasks as much as possible</>",
"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:ci": "<fg=blue;options=bold>Runs all test suites, generating all needed reports and logs for CI envs</>",
"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: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</>",
2021-01-01 13:19:57 +03:00
"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</>",
2021-01-01 13:19:57 +03:00
"test:db:ms": "<fg=blue;options=bold>Runs database test suites on a Miscrosoft SQL Server database</>",
2019-01-27 12:30:38 +03:00
"test:api": "<fg=blue;options=bold>Runs API test suites</>",
"test:unit:pretty": "<fg=blue;options=bold>Runs unit test suites and generates an HTML code coverage report</>",
2021-01-01 13:19:57 +03:00
"infect:ci": "<fg=blue;options=bold>Checks unit and db tests quality applying mutation testing with existing reports and logs</>",
"infect:ci:unit": "<fg=blue;options=bold>Checks unit tests quality applying mutation testing with existing reports and logs</>",
"infect:ci:db": "<fg=blue;options=bold>Checks db tests quality applying mutation testing with existing reports and logs</>",
"infect:test": "<fg=blue;options=bold>Runs unit and db tests, then checks tests quality applying mutation testing</>",
2019-11-17 12:00:29 +03:00
"clean:dev": "<fg=blue;options=bold>Deletes artifacts which are gitignored and could affect dev env</>"
},
"config": {
2020-10-29 19:24:12 +03:00
"sort-packages": true,
"platform-check": false
2016-04-10 10:38:07 +03:00
}
}