├── .github └── workflows │ └── build.yml ├── .gitignore ├── .releaserc.yml ├── LICENSE ├── README.md ├── composer.json ├── migrations ├── mysql.sql ├── pgsql.sql ├── sqlite.sql └── sqlsrv.sql ├── phpunit.xml ├── src └── Adapter.php └── tests ├── AdapterPgsqlTest.php ├── AdapterSqliteTest.php ├── AdapterTest.php ├── casbin.db └── rbac_model.conf /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/.releaserc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/composer.json -------------------------------------------------------------------------------- /migrations/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/migrations/mysql.sql -------------------------------------------------------------------------------- /migrations/pgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/migrations/pgsql.sql -------------------------------------------------------------------------------- /migrations/sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/migrations/sqlite.sql -------------------------------------------------------------------------------- /migrations/sqlsrv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/migrations/sqlsrv.sql -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/src/Adapter.php -------------------------------------------------------------------------------- /tests/AdapterPgsqlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/tests/AdapterPgsqlTest.php -------------------------------------------------------------------------------- /tests/AdapterSqliteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/tests/AdapterSqliteTest.php -------------------------------------------------------------------------------- /tests/AdapterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/tests/AdapterTest.php -------------------------------------------------------------------------------- /tests/casbin.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/tests/casbin.db -------------------------------------------------------------------------------- /tests/rbac_model.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-casbin/database-adapter/HEAD/tests/rbac_model.conf --------------------------------------------------------------------------------