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",
|
2017-03-24 23:10:25 +03:00
|
|
|
"homepage": "https://shlink.io",
|
2016-07-31 17:42:19 +03:00
|
|
|
"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": [
|
|
|
|
{
|
2016-07-31 17:42:19 +03:00
|
|
|
"name": "Alejandro Celaya Alastrué",
|
2017-03-24 23:10:25 +03:00
|
|
|
"homepage": "https://www.alejandrocelaya.com",
|
2016-04-10 10:38:07 +03:00
|
|
|
"email": "alejandro@alejandrocelaya.com"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2016-06-12 18:51:30 +03:00
|
|
|
"php": "^5.6 || ^7.0",
|
2017-03-24 23:10:25 +03:00
|
|
|
"zendframework/zend-expressive": "^2.0",
|
|
|
|
"zendframework/zend-expressive-fastroute": "^2.0",
|
|
|
|
"zendframework/zend-expressive-twigrenderer": "^1.4",
|
|
|
|
"zendframework/zend-stdlib": "^3.0",
|
2016-04-10 10:38:07 +03:00
|
|
|
"zendframework/zend-servicemanager": "^3.0",
|
2016-07-04 09:57:37 +03:00
|
|
|
"zendframework/zend-paginator": "^2.6",
|
2017-03-24 23:10:25 +03:00
|
|
|
"zendframework/zend-config": "^3.0",
|
2016-07-21 16:08:46 +03:00
|
|
|
"zendframework/zend-i18n": "^2.7",
|
2017-03-24 22:34:18 +03:00
|
|
|
"zendframework/zend-config-aggregator": "^0.1",
|
2017-03-24 23:10:25 +03:00
|
|
|
"acelaya/zsm-annotated-services": "^1.0",
|
|
|
|
"acelaya/ze-content-based-error-handler": "^2.0",
|
2016-04-17 12:29:23 +03:00
|
|
|
"doctrine/orm": "^2.5",
|
2016-04-17 21:27:24 +03:00
|
|
|
"guzzlehttp/guzzle": "^6.2",
|
2016-08-07 15:44:33 +03:00
|
|
|
"symfony/console": "^3.0",
|
2016-08-15 00:40:54 +03:00
|
|
|
"symfony/process": "^3.0",
|
2016-08-18 14:20:57 +03:00
|
|
|
"symfony/filesystem": "^3.0",
|
2016-08-08 12:56:19 +03:00
|
|
|
"firebase/php-jwt": "^4.0",
|
|
|
|
"monolog/monolog": "^1.21",
|
2016-08-09 11:24:42 +03:00
|
|
|
"theorchard/monolog-cascade": "^0.4",
|
2016-08-18 11:19:33 +03:00
|
|
|
"endroid/qrcode": "^1.7",
|
2016-08-19 15:51:34 +03:00
|
|
|
"mikehaertl/phpwkhtmltopdf": "^2.2",
|
|
|
|
"doctrine/migrations": "^1.4"
|
2016-04-10 10:38:07 +03:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2017-03-24 22:34:18 +03:00
|
|
|
"phpunit/phpunit": "^5.7 || ^6.0",
|
2016-04-10 10:38:07 +03:00
|
|
|
"squizlabs/php_codesniffer": "^2.3",
|
|
|
|
"roave/security-advisories": "dev-master",
|
2016-04-10 13:06:28 +03:00
|
|
|
"filp/whoops": "^2.0",
|
2016-04-30 18:21:35 +03:00
|
|
|
"symfony/var-dumper": "^3.0",
|
2017-04-13 10:39:35 +03:00
|
|
|
"vlucas/phpdotenv": "^2.2",
|
|
|
|
"zendframework/zend-expressive-tooling": "^0.4"
|
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",
|
2016-07-19 18:27:55 +03:00
|
|
|
"Shlinkio\\Shlink\\Core\\": "module/Core/src",
|
|
|
|
"Shlinkio\\Shlink\\Common\\": "module/Common/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",
|
2016-07-19 18:27:55 +03:00
|
|
|
"ShlinkioTest\\Shlink\\Core\\": "module/Core/test",
|
|
|
|
"ShlinkioTest\\Shlink\\Common\\": "module/Common/test"
|
2016-04-10 10:38:07 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"check": [
|
|
|
|
"@cs",
|
|
|
|
"@test"
|
|
|
|
],
|
|
|
|
"cs": "phpcs",
|
|
|
|
"cs-fix": "phpcbf",
|
|
|
|
"serve": "php -S 0.0.0.0:8000 -t public/",
|
2016-04-17 20:34:16 +03:00
|
|
|
"test": "phpunit --coverage-clover build/clover.xml",
|
2016-04-17 14:42:52 +03:00
|
|
|
"pretty-test": "phpunit --coverage-html build/coverage"
|
2016-08-28 20:32:07 +03:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"process-timeout": 0
|
2016-04-10 10:38:07 +03:00
|
|
|
}
|
|
|
|
}
|