Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions .github/stale.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/php.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea
/.phpunit.cache
/vendor
composer.lock
69 changes: 0 additions & 69 deletions CHANGELOG.md

This file was deleted.

3 changes: 0 additions & 3 deletions CONTRIBUTING.md

This file was deleted.

1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) 2014-2020 Simple Software LLC www.simplesoftware.io
Copyright (c) 2025 Abdul Rahmad Pasaribu misterabdul.moe

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
46 changes: 1 addition & 45 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,47 +1,3 @@
Simple QrCode
========================

![Unit Tests](https://github.com/SimpleSoftwareIO/simple-qrcode/workflows/Unit%20Tests/badge.svg)
[![Latest Stable Version](https://poser.pugx.org/simplesoftwareio/simple-qrcode/v/stable.svg)](https://packagist.org/packages/simplesoftwareio/simple-qrcode)
[![Latest Unstable Version](https://poser.pugx.org/simplesoftwareio/simple-qrcode/v/unstable.svg)](https://packagist.org/packages/simplesoftwareio/simple-qrcode)
[![License](https://poser.pugx.org/simplesoftwareio/simple-qrcode/license.svg)](https://packagist.org/packages/simplesoftwareio/simple-qrcode)
[![Total Downloads](https://poser.pugx.org/simplesoftwareio/simple-qrcode/downloads.svg)](https://packagist.org/packages/simplesoftwareio/simple-qrcode)

## [Deutsch](https://www.simplesoftware.io/#/docs/simple-qrcode/de) | [Español](https://www.simplesoftware.io/#/docs/simple-qrcode/es) | [Français](https://www.simplesoftware.io/#/docs/simple-qrcode/fr) | [Italiano](https://www.simplesoftware.io/#/docs/simple-qrcode/it) | [Português](https://www.simplesoftware.io/#/docs/simple-qrcode/pt-br) | [Русский](https://www.simplesoftware.io/#/docs/simple-qrcode/ru) | [日本語](https://www.simplesoftware.io/#/docs/simple-qrcode/ja) | [한국어](https://www.simplesoftware.io/#/docs/simple-qrcode/kr) | [हिंदी](https://www.simplesoftware.io/#/docs/simple-qrcode/hi) | [简体中文](https://www.simplesoftware.io/#/docs/simple-qrcode/zh-cn) | [العربية](https://www.simplesoftware.io/#/docs/simple-qrcode/ar)

Language files are currently out of date. We need volunteers to upgrade them to v4! Please submit a PR request!

### Try our dead simple, free file transfer service [keep.sh](https://keep.sh)

[![keep.sh](https://user-images.githubusercontent.com/624784/95805291-1121e980-0cd3-11eb-9048-0264bd9f2fd7.gif)](https://keep.sh)

Easy fast file sharing from the command line with a single curl command! `curl --upload-file your-local-file.txt https://keep.sh`

## Introduction
Simple QrCode is an easy to use wrapper for the popular Laravel framework based on the great work provided by [Bacon/BaconQrCode](https://github.com/Bacon/BaconQrCode). We created an interface that is familiar and easy to install for Laravel users.

## Official Documentation

Documentation for Simple QrCode can be found on our [website.](http://www.simplesoftware.io/#/docs/simple-qrcode)

## Examples

![Example 1](docs/imgs/example-1.png) ![Example 2](docs/imgs/example-2.png)

## Use Cases
<p align="center">
<a href="https://www.rsvpify.com">
<img width="300" src="https://rsvpify.com/wp-content/uploads/2017/03/rsvpify-logo-header-rsvp.png">
</a>
</p>
<p align="center">
<a href="https://rsvpify.com/sell-tickets">Platform to sell tickets online</a>
</p>

## Contributing

Please submit all issues and pull requests to the [simplesoftwareio/simple-qrcode](https://github.com/simplesoftwareio/simple-qrcode) repository on the develop branch!

## License

This software is released under the [MIT license.](https://opensource.org/licenses/MIT)
Another fork of [simple-qrcode](https://github.com/SimpleSoftwareIO/simple-qrcode) because it seems no longer maintained. I just update the code to work with newer Laravel & PHP version.
14 changes: 0 additions & 14 deletions SECURITY.md

This file was deleted.

28 changes: 19 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,33 @@
{
"name": "simplesoftwareio/simple-qrcode",
"name": "misterabdul/simple-qrcode",
"description": "Simple QrCode is a QR code generator made for Laravel.",
"keywords": ["qrcode", "laravel", "simple", "generator", "wrapper"],
"homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
"license" : "MIT",
"keywords": [
"qrcode",
"laravel",
"simple",
"generator",
"wrapper"
],
"license": "MIT",
"authors": [
{
"name": "Simple Software LLC",
"email": "[email protected]"
},
{
"name": "Abdul Rahmad Pasaribu",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2|^8.0",
"ext-gd": "*",
"bacon/bacon-qr-code": "^2.0"
"php": "^8.2",
"ext-gd": "*",
"bacon/bacon-qr-code": "^3.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"mockery/mockery": "~1",
"phpunit/phpunit": "~9"
"phpunit/phpunit": "^11.0"
},
"suggest": {
"ext-imagick": "Allows the generation of PNG QrCodes.",
Expand All @@ -41,4 +51,4 @@
}
}
}
}
}
Loading