| 12345678910111213141516171819202122232425262728293031 |
- {
- "name": "longyi/reward-points",
- "description": "Reward Points System for Bagisto",
- "keywords": ["bagisto", "reward", "points", "loyalty"],
- "license": "MIT",
- "type": "library",
- "version": "1.0.0",
- "authors": [
- {
- "name": "Longyi Team",
- "email": "dev@longyi.com"
- }
- ],
- "require": {
- "php": "^8.1|^8.2",
- "illuminate/support": "^10.0|^11.0"
- },
- "autoload": {
- "psr-4": {
- "Longyi\\RewardPoints\\": "src/"
- }
- },
- "extra": {
- "laravel": {
- "providers": [
- "Longyi\\RewardPoints\\Providers\\RewardPointsServiceProvider"
- ],
- "aliases": {}
- }
- }
- }
|