shlink/composer.json

133 lines
5.1 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": {
2018-03-26 18:01:50 +03:00
"php": "^7.1",
"ext-json": "*",
"ext-pdo": "*",
2018-03-26 19:49:28 +03:00
"acelaya/ze-content-based-error-handler": "^2.2",
"cakephp/chronos": "^1.2",
"cocur/slugify": "^3.0",
2017-12-27 17:25:59 +03:00
"doctrine/cache": "^1.6",
"doctrine/migrations": "^1.4",
2017-12-27 17:25:59 +03:00
"doctrine/orm": "^2.5",
"endroid/qr-code": "^1.7",
"firebase/php-jwt": "^4.0",
2016-04-17 21:27:24 +03:00
"guzzlehttp/guzzle": "^6.2",
"mikehaertl/phpwkhtmltopdf": "^2.2",
"monolog/monolog": "^1.21",
"roave/security-advisories": "dev-master",
2018-03-26 21:32:12 +03:00
"symfony/console": "^4.0",
"symfony/filesystem": "^4.0",
"symfony/process": "^4.0",
2016-08-09 11:24:42 +03:00
"theorchard/monolog-cascade": "^0.4",
"zendframework/zend-config": "^3.0",
2017-10-23 14:33:23 +03:00
"zendframework/zend-config-aggregator": "^1.0",
"zendframework/zend-diactoros": "^2.0",
2018-03-26 19:49:28 +03:00
"zendframework/zend-expressive": "^3.0",
"zendframework/zend-expressive-fastroute": "^3.0",
"zendframework/zend-expressive-helpers": "^5.0",
"zendframework/zend-expressive-platesrenderer": "^2.0",
"zendframework/zend-i18n": "^2.7",
"zendframework/zend-inputfilter": "^2.8",
"zendframework/zend-paginator": "^2.6",
2017-12-27 17:25:59 +03:00
"zendframework/zend-servicemanager": "^3.2",
"zendframework/zend-stdlib": "^3.0"
2016-04-10 10:38:07 +03:00
},
"require-dev": {
2016-04-10 13:06:28 +03:00
"filp/whoops": "^2.0",
"infection/infection": "^0.9.0",
"phpstan/phpstan": "^0.10.0",
"phpunit/phpcov": "^5.0",
"phpunit/phpunit": "^7.0",
2017-10-12 11:13:20 +03:00
"slevomat/coding-standard": "^4.0",
"squizlabs/php_codesniffer": "^3.2.3",
2018-03-26 21:32:12 +03:00
"symfony/dotenv": "^4.0",
"symfony/var-dumper": "^4.0",
2018-03-26 19:49:28 +03:00
"zendframework/zend-component-installer": "^2.1",
"zendframework/zend-expressive-tooling": "^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",
"Shlinkio\\Shlink\\Common\\": "module/Common/src",
"Shlinkio\\Shlink\\Installer\\": "module/Installer/src"
2016-08-01 15:36:39 +03:00
},
"files": [
"module/Common/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",
"ShlinkioTest\\Shlink\\Core\\": [
"module/Core/test",
"module/Core/test-func"
],
"ShlinkioTest\\Shlink\\Common\\": [
"module/Common/test",
"module/Common/test-func"
],
"ShlinkioTest\\Shlink\\Installer\\": "module/Installer/test"
2016-04-10 10:38:07 +03:00
}
},
"scripts": {
"check": [
"@cs",
2018-03-26 18:01:50 +03:00
"@stan",
"@test",
2018-03-26 18:09:50 +03:00
"@infect"
2016-04-10 10:38:07 +03:00
],
2016-04-10 10:38:07 +03:00
"cs": "phpcs",
"cs:fix": "phpcbf",
"stan": "phpstan analyse module/*/src/ --level=6 -c phpstan.neon",
"test": [
"@test:unit",
"@test:func"
],
"test:unit": "phpunit --coverage-php build/coverage-unit.cov",
"test:func": "phpunit -c phpunit-func.xml --coverage-php build/coverage-func.cov",
"test:pretty": [
"@test:unit",
"@test:func",
"phpcov merge build --html build/html"
2018-03-26 18:01:50 +03:00
],
"test:unit:pretty": "phpunit --coverage-html build/coverage",
"infect": "infection --threads=4 --min-msi=60 --only-covered --log-verbosity=2",
"infect:show": "infection --threads=4 --min-msi=60 --only-covered --log-verbosity=2 --show-mutations"
},
"scripts-descriptions": {
"check": "<fg=blue;options=bold>Alias for \"cs\", \"stan\", \"test\" and \"infect\"</>",
"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:func": "<fg=blue;options=bold>Runs functional test suites (covering entity repositories)</>",
"test:pretty": "<fg=blue;options=bold>Runs all test suites and generates an HTML code coverage report</>",
"test:unit:pretty": "<fg=blue;options=bold>Runs unit test suites and generates an HTML code coverage report</>",
"infect": "<fg=blue;options=bold>Checks unit tests quality applying mutation testing</>",
"infect:show": "<fg=blue;options=bold>Checks unit tests quality applying mutation testing and shows applied mutators</>"
},
"config": {
"sort-packages": true
2016-04-10 10:38:07 +03:00
}
}