laravelium / disqus
This package is abandoned and no longer maintained.
No replacement package was suggested.
Laravelium Disqus package for Laravel.
v1.3.1
2019-02-27 17:28 UTC
Requires
- php: >=7.1.3
- disqus/disqus-php: dev-master
- laravel/framework: ~5.8
Requires (Dev)
- mockery/mockery: ^1.0
- orchestra/testbench-core: 3.8.*
- phpunit/phpunit: ^7.5 || ^8.0
README
Laravelium Disqus package for Laravel.
Notes
- Dev Branches are for development and are UNSTABLE (use on your own risk!)
- Because
disqus-php
is not a valid composer package you must add it as custom repository your rootcomposer.json
Installation
Add this custom repository (in repositories
section) to your composer.json
file :
"repositories": [
{
"type": "package",
"package": {
"name": "disqus/disqus-php",
"version": "dev-master",
"source": {
"url": "https://github.com/disqus/disqus-php.git",
"type": "git",
"reference": "master"
}
}
}],
Add the following to require
section in your composer.json
file :
For Laravel 5.8
"laravelium/disqus": "1.3.*",
"disqus/disqus-php": "dev-master"
or (development branch)
"laravelium/disqus": "1.3.x-dev",
"disqus/disqus-php": "dev-master"
For Laravel 5.7
"laravelium/disqus": "1.2.*",
"disqus/disqus-php": "dev-master"
or (development branch)
"laravelium/disqus": "1.2.x-dev",
"disqus/disqus-php": "dev-master"
For Laravel 5.6
"laravelium/disqus": "1.1.*",
"disqus/disqus-php": "dev-master"
or (development branch)
"laravelium/disqus": "1.1.x-dev",
"disqus/disqus-php": "dev-master"
For Laravel 5.5
"laravelium/disqus": "1.0.*",
"disqus/disqus-php": "dev-master"
or (development branch)
"laravelium/disqus": "1.0.x-dev",
"disqus/disqus-php": "dev-master"
Examples
and more in the Wiki.
Contribution guidelines
Before submiting new merge request or creating new issue, please read contribution guidelines.
License
This package is open-sourced software licensed under the MIT license.