All Projects → laravelio → Laravel.io

laravelio / Laravel.io

Licence: mit
The Laravel.io Community Portal.

Programming Languages

PHP
23972 projects - #3 most used programming language
Blade
752 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to Laravel.io

Ruqqus
An open-source platform for online communities
Stars: ✭ 460 (-76.92%)
Mutual labels:  forums, community
Vanilla
Vanilla is a powerfully simple discussion forum you can easily customize to make as unique as your community.
Stars: ✭ 2,460 (+23.43%)
Mutual labels:  forums, community
Voten
The code that powers voten.co
Stars: ✭ 1,215 (-39.04%)
Mutual labels:  community, laravel
Laraveltherightway.github.io
Laravel Best Practices (previously Laravel The Right Way)
Stars: ✭ 294 (-85.25%)
Mutual labels:  community, laravel
Core
Simple forum software for building great communities.
Stars: ✭ 5,372 (+169.54%)
Mutual labels:  community, laravel
Viscacha
A bulletin board and content management solution
Stars: ✭ 6 (-99.7%)
Mutual labels:  forums, community
Popforums
A forum application running on ASP.NET Core, available in six languages.
Stars: ✭ 145 (-92.72%)
Mutual labels:  forums, community
Laravel Api Templates
Laravel API starter kit collection using different structures.
Stars: ✭ 149 (-92.52%)
Mutual labels:  laravel
Nova Cashier Manager
Managing Stripe subscriptions inside the incredible Laravel Nova admin panel.
Stars: ✭ 150 (-92.47%)
Mutual labels:  laravel
Laravel Shortcodes
Wordpress like shortcodes for Laravel 4.2, 5.x, 6.x, 7.x and 8.x
Stars: ✭ 148 (-92.57%)
Mutual labels:  laravel
Discord
Discord notification channel for Laravel
Stars: ✭ 148 (-92.57%)
Mutual labels:  laravel
Request Migrations
HTTP Request Migrations for API Versioning like Stripe
Stars: ✭ 149 (-92.52%)
Mutual labels:  laravel
Credit Card
Credit Card Validation
Stars: ✭ 150 (-92.47%)
Mutual labels:  laravel
Has Parameters
A trait that allows you to pass arguments to Laravel middleware in a more PHP'ish way.
Stars: ✭ 149 (-92.52%)
Mutual labels:  laravel
Laravel Meta
HTML Meta Tags management package available for for Laravel 5.*
Stars: ✭ 150 (-92.47%)
Mutual labels:  laravel
Apiserver
基于Laravel的API服务端架构代码
Stars: ✭ 148 (-92.57%)
Mutual labels:  laravel
Pinatra
A PHP copy of Sinatra: a DSL for quickly creating web applications in PHP with minimal effort.
Stars: ✭ 151 (-92.42%)
Mutual labels:  laravel
Laravel Gitlab
A GitLab bridge for Laravel
Stars: ✭ 150 (-92.47%)
Mutual labels:  laravel
Larapush
artisan push - Deploy your codebase into your web server with one Laravel artisan command and no SSH needed!
Stars: ✭ 150 (-92.47%)
Mutual labels:  laravel
Laravel Video
A laravel package to stream video content.
Stars: ✭ 150 (-92.47%)
Mutual labels:  laravel

Tests Code Style

Laravel.io

This is the repository for the Laravel.io community portal. The code is entirely open source and licensed under the MIT license. We welcome your contributions but we encourage you to read the contributing guide before creating an issue or sending in a pull request. Read the installation guide below to get started with setting up the app on your machine.

Sponsors

We'd like to thank these amazing companies for sponsoring us. If you are interested in becoming a sponsor, please visit the Laravel.io Github Sponsors page.

Requirements

The following tools are required in order to start the installation.

Installation

Note that you're free to adjust the ~/Sites/laravel.io location to any directory you want on your machine. In doing so, be sure to run the valet link command inside the desired directory.

  1. Clone this repository with git clone [email protected]:laravelio/laravel.io.git ~/Sites/laravel.io
  2. Run composer install to install the PHP dependencies
  3. Set up a local database called laravel
  4. Run composer setup to setup the application
  5. Set up a working e-mail driver like Mailtrap
  6. Run valet link to link the site to a testing web address
  7. Configure the (optional) features from below

You can now visit the app in your browser by visiting http://laravel.io.test. If you seeded the database you can login into a test account with johndoe & password.

Github Authentication (optional)

To get Github authentication to work locally, you'll need to register a new OAuth application on Github. Use http://laravel.io.test for the homepage url and http://laravel.io.test/auth/github for the callback url. When you've created the app, fill in the ID and secret in your .env file in the env variables below. You should now be able to authentication with Github.

GITHUB_ID=
GITHUB_SECRET=
GITHUB_URL=http://laravel.io.test/auth/github

Algolia Search (optional)

To get Algolia search running locally, you'll need to register for a new account and create an index called threads. Algolia has a free tier that satisfies all of the requirements needed for a development environment. Now update the below variables in your .env file. The App ID and secret keys can be found in the API Keys section of the Algoila UI.

SCOUT_DRIVER=algolia
SCOUT_QUEUE=true

ALGOLIA_APP_ID=
ALGOLIA_SECRET="Use the Write API Key"

MIX_ALGOLIA_APP_ID="${ALGOLIA_APP_ID}"
MIX_ALGOLIA_SECRET="Use the Search API Key"
MIX_ALGOLIA_INDEX=threads

In order to index your existing threads, run the following command:

php artisan scout:import App\\Models\\Thread

New threads will be automatically added to the index and threads which get updated will be automatically synced. If you need to flush your index and start again, you can run the following command:

php artisan scout:flush App\\Models\\Thread

Twitter Sharing (optional)

To enable published articles to be automatically shared on Twitter, you'll need to create a Twitter app. Once the app has been created, update the below variables in your .env file. The consumer key and secret and access token and secret can be found in the Keys and tokens section of the Twitter developers UI.

TWITTER_CONSUMER_KEY=
TWITTER_CONSUMER_SECRET=
TWITTER_ACCESS_TOKEN=
TWITTER_ACCESS_SECRET=

Approved articles are shared in the order they were submitted for approval. Articles are shared twice per day at 14:00 and 18:00 UTC. Once an article has been shared, it will not be shared again.

Commands

Command Description
php artisan test --parallel Run the tests
php artisan migrate:fresh --seed Reset the database
npm run watch Watch for changes in CSS and JS files

Maintainers

The Laravel.io portal is currently maintained by Dries Vints and Joe Dixon. If you have any questions please don't hesitate to create an issue on this repo.

Contributing

Please read the contributing guide before creating an issue or sending in a pull request.

Code of Conduct

Please read our Code of Conduct before contributing or engaging in discussions.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

License

The MIT License. Please see the license file for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].