Archived
1
0
Fork 0
This repository has been archived on 2021-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
ifnews/composer.json

63 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2019-09-12 18:31:50 +03:00
{
2020-05-19 12:02:02 +03:00
"name": "ifhub/ifnews",
"description": "Game news parser",
"keywords": ["console", "cli"],
"homepage": "https://ifhub.club",
2019-11-29 18:42:16 +02:00
"type": "project",
2020-05-19 12:02:02 +03:00
"license": "GPL",
2019-11-29 18:42:16 +02:00
"support": {
2020-05-19 12:02:02 +03:00
"issues": "https://code.oreolek.ru/ifhub/ifnews/issues",
"source": "https://code.oreolek.ru/ifhub/ifnews"
2019-11-29 18:42:16 +02:00
},
"authors": [
{
2020-05-19 12:02:02 +03:00
"name": "Alexander Yakovlev",
"email": "keloero@oreolek.ru"
2019-11-29 18:42:16 +02:00
}
],
"require": {
"php": "^7.2",
2019-11-29 18:42:16 +02:00
"addwiki/mediawiki-api": "^0.7.2",
2020-05-02 21:02:54 +03:00
"illuminate/cache": "^7.0",
"illuminate/database": "^7.0",
"laravel-zero/framework": "^7.0",
2020-01-05 10:39:13 +02:00
"longman/telegram-bot": "dev-master",
"revolution/laravel-mastodon-api": "dev-master",
"ryakad/pandoc-php": "^1.0",
"sabre/xml": "^2.0",
2020-05-19 12:07:39 +03:00
"symfony/css-selector": "^5.0",
"symfony/dom-crawler": "^5.0",
2020-05-19 12:00:13 +03:00
"doctrine/dbal": "^2.10"
2019-11-29 18:42:16 +02:00
},
"require-dev": {
2020-05-02 21:02:54 +03:00
"illuminate/log": "^7.0",
2019-11-29 18:42:16 +02:00
"mockery/mockery": "^1.0",
"monolog/monolog": "^2.0",
"nunomaduro/larastan": "^0.6",
2020-05-19 12:07:39 +03:00
"phpunit/phpunit": "^9.0"
2019-11-29 18:42:16 +02:00
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"post-create-project-cmd": [
"@php application app:rename"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["ifnews"]
2019-09-12 18:31:50 +03:00
}