wallabag/composer.json

127 lines
4.4 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.7.0",
2015-01-22 07:30:07 +00:00
"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",
"nelmio/cors-bundle": "~1.4.0",
"umpirsky/twig-gettext-extractor": "~1.1.5",
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-31 08:41:49 +00:00
"ezyang/htmlpurifier": "~4.6",
"mgargano/simplehtmldom": "~1.5",
"tecnick.com/tcpdf": "~6.2",
"simplepie/simplepie": "~1.3.1",
"willdurand/hateoas-bundle": "~0.5.0",
"htmlawed/htmlawed": "~1.1.19",
"liip/theme-bundle": "~1.1.3",
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",
2015-03-06 10:06:46 +00:00
"wallabag/Fivefilters_Libraries": "dev-master",
"pagerfanta/pagerfanta": "~1.0.3",
"lexik/form-filter-bundle": "~4.0"
2015-01-19 10:59:22 +00:00
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "~2.2.0",
2015-01-31 08:41:49 +00:00
"sensio/generator-bundle": "~2.5",
"phpunit/phpunit": "~4.4"
2015-01-19 10:59:22 +00:00
},
"scripts": {
"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"
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"
]
},
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"
}
},
2015-01-20 06:40:39 +00:00
"autoload": {
"psr-0": { "": "src/" }
2015-01-20 06:40:39 +00:00
},
2015-01-19 10:59:22 +00:00
"config": {
"bin-dir": "bin"
2015-01-31 08:41:49 +00:00
},
"minimum-stability": "dev",
"prefer-stable": true
}