2016-04-10 02:38:07 -05:00
|
|
|
{
|
2016-07-19 09:30:48 -05:00
|
|
|
"name": "shlinkio/shlink",
|
2016-04-10 02:38:07 -05:00
|
|
|
"type": "project",
|
2016-07-19 09:30:48 -05:00
|
|
|
"homepage": "http://shlink.io",
|
2016-07-31 09:42:19 -05:00
|
|
|
"description": "A self-hosted and PHP-based URL shortener application with CLI and REST interfaces",
|
2016-04-10 02:38:07 -05:00
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
2016-07-31 09:42:19 -05:00
|
|
|
"name": "Alejandro Celaya Alastrué",
|
2016-04-10 02:38:07 -05:00
|
|
|
"homepage": "http://www.alejandrocelaya.com",
|
|
|
|
"email": "alejandro@alejandrocelaya.com"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2016-06-12 10:51:30 -05:00
|
|
|
"php": "^5.6 || ^7.0",
|
2016-04-10 02:38:07 -05:00
|
|
|
"zendframework/zend-expressive": "^1.0",
|
2016-04-30 11:59:03 -05:00
|
|
|
"zendframework/zend-expressive-fastroute": "^1.1",
|
|
|
|
"zendframework/zend-expressive-twigrenderer": "^1.0",
|
2016-04-10 02:38:07 -05:00
|
|
|
"zendframework/zend-stdlib": "^2.7",
|
|
|
|
"zendframework/zend-servicemanager": "^3.0",
|
2016-07-04 01:57:37 -05:00
|
|
|
"zendframework/zend-paginator": "^2.6",
|
2016-07-19 09:30:48 -05:00
|
|
|
"zendframework/zend-config": "^2.6",
|
2016-07-21 08:08:46 -05:00
|
|
|
"zendframework/zend-i18n": "^2.7",
|
2016-07-19 09:30:48 -05:00
|
|
|
"mtymek/expressive-config-manager": "^0.4",
|
2016-07-21 08:08:46 -05:00
|
|
|
"acelaya/zsm-annotated-services": "^0.2.0",
|
2016-04-17 04:29:23 -05:00
|
|
|
"doctrine/orm": "^2.5",
|
2016-04-17 13:27:24 -05:00
|
|
|
"guzzlehttp/guzzle": "^6.2",
|
2016-08-07 07:44:33 -05:00
|
|
|
"symfony/console": "^3.0",
|
2016-08-08 04:56:19 -05:00
|
|
|
"firebase/php-jwt": "^4.0",
|
|
|
|
"monolog/monolog": "^1.21",
|
|
|
|
"theorchard/monolog-cascade": "^0.4"
|
2016-04-10 02:38:07 -05:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2016-06-12 10:51:30 -05:00
|
|
|
"phpunit/phpunit": "^5.0",
|
2016-04-10 02:38:07 -05:00
|
|
|
"squizlabs/php_codesniffer": "^2.3",
|
|
|
|
"roave/security-advisories": "dev-master",
|
2016-04-10 05:06:28 -05:00
|
|
|
"filp/whoops": "^2.0",
|
2016-04-30 10:21:35 -05:00
|
|
|
"symfony/var-dumper": "^3.0",
|
|
|
|
"vlucas/phpdotenv": "^2.2"
|
2016-04-10 02:38:07 -05:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2016-07-19 09:50:02 -05:00
|
|
|
"Shlinkio\\Shlink\\CLI\\": "module/CLI/src",
|
|
|
|
"Shlinkio\\Shlink\\Rest\\": "module/Rest/src",
|
2016-07-19 10:27:55 -05:00
|
|
|
"Shlinkio\\Shlink\\Core\\": "module/Core/src",
|
|
|
|
"Shlinkio\\Shlink\\Common\\": "module/Common/src"
|
2016-08-01 07:36:39 -05:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"module/Common/functions/functions.php"
|
|
|
|
]
|
2016-04-10 02:38:07 -05:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2016-07-19 09:50:02 -05:00
|
|
|
"ShlinkioTest\\Shlink\\CLI\\": "module/CLI/test",
|
|
|
|
"ShlinkioTest\\Shlink\\Rest\\": "module/Rest/test",
|
2016-07-19 10:27:55 -05:00
|
|
|
"ShlinkioTest\\Shlink\\Core\\": "module/Core/test",
|
|
|
|
"ShlinkioTest\\Shlink\\Common\\": "module/Common/test"
|
2016-04-10 02:38:07 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"check": [
|
|
|
|
"@cs",
|
|
|
|
"@test"
|
|
|
|
],
|
|
|
|
"cs": "phpcs",
|
|
|
|
"cs-fix": "phpcbf",
|
|
|
|
"serve": "php -S 0.0.0.0:8000 -t public/",
|
2016-04-17 12:34:16 -05:00
|
|
|
"test": "phpunit --coverage-clover build/clover.xml",
|
2016-04-17 06:42:52 -05:00
|
|
|
"pretty-test": "phpunit --coverage-html build/coverage"
|
2016-04-10 02:38:07 -05:00
|
|
|
}
|
|
|
|
}
|