wallabag/composer.json

128 lines
4.6 KiB
JSON
Raw Normal View History

2013-08-03 18:47:17 +00:00
{
2015-01-16 19:45:23 +00:00
"name": "wallabag/wallabag",
"type": "project",
"description": "open source self hostable read-it-later web application",
"keywords": ["read-it-later","read it later"],
"homepage": "https://github.com/wallabag/wallabag",
"license": "MIT",
"authors": [
{
"name": "Nicolas Lœuillet",
"email": "nicolas@loeuillet.org",
"homepage": "http://www.cdetc.fr",
"role": "Developer"
},
{
"name": "Thomas Citharel",
"homepage": "http://tcit.fr",
"role": "Developer"
}
],
"support": {
"email": "hello@wallabag.org",
"issues": "https://github.com/wallabag/wallabag/issues"
},
2015-01-18 21:11:41 +00:00
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wallabag/PHP-Flash-Messages"
2015-01-18 21:25:29 +00:00
},
{
"type": "vcs",
"url": "https://github.com/wallabag/kriss_php5"
},
{
"type": "vcs",
"url": "https://github.com/wallabag/pagination"
2015-01-19 12:00:33 +00:00
},
{
"type": "vcs",
"url": "https://github.com/wallabag/PHPePub"
2015-01-19 12:38:57 +00:00
},
{
"type": "vcs",
"url": "https://github.com/wallabag/php-readability"
},
{
"type": "vcs",
"url": "https://github.com/wallabag/phpMobi"
2015-01-19 20:27:22 +00:00
},
{
"type": "vcs",
"url": "https://github.com/wallabag/Fivefilters_Libraries"
2015-01-18 21:11:41 +00:00
}
],
2013-08-03 18:47:17 +00:00
"require": {
2015-01-22 07:30:07 +00:00
"php": ">=5.3.3",
"symfony/symfony": "2.6.*",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "~1.2",
"twig/extensions": "~1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"sensio/distribution-bundle": "~3.0.12",
"sensio/framework-extra-bundle": "~3.0",
"incenteev/composer-parameter-handler": "~2.0",
2015-01-18 19:07:46 +00:00
"umpirsky/twig-gettext-extractor": "1.1.*",
2015-01-28 15:15:06 +00:00
"friendsofsymfony/rest-bundle": "~1.4",
"jms/serializer-bundle": "~0.13",
"nelmio/api-doc-bundle": "~2.7",
2015-01-18 19:07:46 +00:00
"ezyang/htmlpurifier": "dev-master",
2015-01-18 21:11:41 +00:00
"mgargano/simplehtmldom": "dev-master",
2015-01-19 12:00:33 +00:00
"robmorgan/phinx": "*",
2015-01-19 13:48:03 +00:00
"tecnick.com/tcpdf": "dev-master",
"simplepie/simplepie": "dev-master",
2015-01-19 15:53:59 +00:00
"htmlawed/htmlawed": "dev-master",
2015-01-18 21:25:29 +00:00
"wallabag/PHP-Flash-Messages": "dev-master",
"wallabag/kriss_php5": "dev-master",
2015-01-19 11:21:49 +00:00
"wallabag/pagination": "dev-master",
2015-01-19 12:38:57 +00:00
"wallabag/PHPePub": "dev-master",
"wallabag/php-readability": "dev-master",
2015-01-19 20:27:22 +00:00
"wallabag/phpMobi": "dev-master",
"wallabag/Fivefilters_Libraries": "dev-master"
2015-01-19 10:59:22 +00:00
},
"require-dev": {
2015-01-22 07:30:07 +00:00
"sensio/generator-bundle": "~2.3",
2015-01-19 10:59:22 +00:00
"phpunit/phpunit": "~3.7"
},
"scripts": {
2015-01-22 07:30:07 +00:00
"post-root-package-install": [
"SymfonyStandard\\Composer::hookRootPackageInstall"
],
"post-install-cmd": [
2015-01-22 07:30:07 +00:00
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles",
"bin/install"
2015-01-22 07:30:07 +00:00
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles"
]
},
2015-01-22 07:30:07 +00:00
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.6-dev"
}
},
2015-01-20 06:40:39 +00:00
"autoload": {
2015-01-22 07:30:07 +00:00
"psr-0": { "": "src/", "SymfonyStandard": "app/" }
2015-01-20 06:40:39 +00:00
},
2015-01-19 10:59:22 +00:00
"config": {
"bin-dir": "bin"
2013-08-03 18:47:17 +00:00
}
}