first commit

This commit is contained in:
2025-04-27 04:02:46 +02:00
commit 05e8cca347
47 changed files with 2723 additions and 0 deletions

16
src/Id/Enums/Scope.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
namespace Anikeen\Id\Enums;
class Scope
{
const USER = 'user';
const USER_READ = 'user:read';
const ORDERS = 'orders';
const ORDERS_READ = 'orders:read';
const PRODUCTS = 'products';
const PRODUCTS_READ = 'products:read';
const BILLING = 'billing';
const BILLING_READ = 'billing:read';
const ADMIN = 'admin';
}