Skip to content
Draft
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
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ npm run test:frontend # Jest tests

**Database tables:** `notur_extensions`, `notur_migrations`, `notur_settings`, `notur_activity_logs` (migrations in `database/migrations/`).

**Artisan commands** (16 total in `src/Console/Commands/`): `notur:install`, `notur:remove`, `notur:enable`, `notur:disable`, `notur:list`, `notur:update`, `notur:dev`, `notur:build`, `notur:export`, `notur:registry:sync`, `notur:uninstall`, `notur:new`, `notur:validate`, `notur:status`, `notur:keygen`, `notur:registry:status`.
**Artisan commands** (17 total in `src/Console/Commands/`): `notur:install`, `notur:remove`, `notur:enable`, `notur:disable`, `notur:list`, `notur:update`, `notur:dev`, `notur:dev:pull`, `notur:build`, `notur:export`, `notur:registry:sync`, `notur:uninstall`, `notur:new`, `notur:validate`, `notur:status`, `notur:keygen`, `notur:registry:status`.

### Frontend Bridge (`bridge/src/`)

Expand Down
13 changes: 12 additions & 1 deletion config/notur.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
| Notur Version
|--------------------------------------------------------------------------
*/
'version' => '1.2.3',
'version' => '1.2.4',

/*
|--------------------------------------------------------------------------
Expand All @@ -30,6 +30,17 @@
*/
'require_signatures' => false,

/*
|--------------------------------------------------------------------------
| GitHub Repository
|--------------------------------------------------------------------------
|
| The GitHub owner/repo for the Notur framework source code.
| Used by notur:dev:pull to download unreleased commits.
|
*/
'repository' => 'sak0a/notur',

/*
|--------------------------------------------------------------------------
| Registry URL
Expand Down
Loading