arikajs 0.10.10 → 0.10.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/LICENSE +17 -15
  2. package/README.md +29 -12
  3. package/package.json +31 -25
package/LICENSE CHANGED
@@ -1,19 +1,21 @@
1
- Business Source License 1.1
1
+ MIT License
2
2
 
3
- Copyright (c) 2024-2026 Prakash Tank. All rights reserved.
3
+ Copyright (c) 2024-2026 Prakash Tank
4
4
 
5
- This software is licensed under the Business Source License 1.1 (BSL-1.1).
6
- The full license text is available in the root LICENSE file of this repository.
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
7
11
 
8
- Licensed Work: ArikaJS Framework
9
- Licensor: Prakash Tank
10
- Change Date: 2029-01-01
11
- Change License: Apache License, Version 2.0
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
12
14
 
13
- For commercial licensing, contact: prakashtank@arikajs.dev
14
-
15
- ---
16
-
17
- Trademark Notice: "ArikaJS" is a trademark of Prakash Tank.
18
- You may not use the ArikaJS name or logo for derivative works or forks
19
- without prior written permission.
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -8,14 +8,15 @@
8
8
 
9
9
  [![npm version](https://img.shields.io/npm/v/arikajs.svg?style=flat-square)](https://www.npmjs.com/package/arikajs)
10
10
  [![npm downloads](https://img.shields.io/npm/dm/arikajs.svg?style=flat-square)](https://www.npmjs.com/package/arikajs)
11
- [![License: BSL-1.1](https://img.shields.io/badge/License-BSL_1.1-orange.svg?style=flat-square)](../../LICENSE)
11
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](../../LICENSE)
12
+ [![Discord](https://img.shields.io/badge/discord-join-7289da?style=flat&logo=discord&logoColor=white)](https://discord.gg/XUTjzwjrHK)
12
13
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.0+-blue.svg?style=flat-square)](https://www.typescriptlang.org/)
13
14
  [![Node.js](https://img.shields.io/badge/Node.js-20+-green.svg?style=flat-square)](https://nodejs.org/)
14
15
  [![GitHub stars](https://img.shields.io/github/stars/arikajs/arikajs.svg?style=flat-square)](https://github.com/arikajs/arikajs/stargazers)
15
16
  [![GitHub issues](https://img.shields.io/github/issues/arikajs/arikajs.svg?style=flat-square)](https://github.com/arikajs/arikajs/issues)
16
17
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://github.com/arikajs/arikajs/pulls)
17
18
 
18
- [Quick Start](#quick-start) | [Core Modules](#-the-arikajs-ecosystem) | [Documentation](https://arikajs.com) | [Discord](https://discord.gg/arikajs)
19
+ [Quick Start](#quick-start) | [Core Modules](#-the-arikajs-ecosystem) | [Documentation](https://github.com/arikajs/arikajs#readme) | [Discord](https://discord.gg/XUTjzwjrHK)
19
20
 
20
21
  </div>
21
22
 
@@ -124,13 +125,30 @@ const diff = Carbon.parse(user.created_at).diffForHumans();
124
125
 
125
126
  The ArikaJS CLI is your best friend during development.
126
127
 
127
- ```bash
128
- arika list # List all available commands
129
- arika help <command> # Show detailed help for a specific command
130
- arika make:model # Interactive menu to generate models/migrations
131
- arika migrate # Run pending database migrations
132
- arika queue:work # Start the background worker
133
- ```
128
+ ### General Commands
129
+ - `arika new <name>` # Scaffold a new ArikaJS application
130
+ - `arika serve --dev` # Start the dev server with Hot Reload
131
+ - `arika list` # List all available commands
132
+ - `arika help <command>` # Show detailed help for a specific command
133
+ - `arika key:generate` # Generate a secure application key
134
+
135
+ ### Generators (Scaffolding)
136
+ - `arika make:model` # Generate a Model and Migration
137
+ - `arika make:controller` # Generate a new Controller
138
+ - `arika make:middleware` # Generate a new Middleware
139
+ - `arika make:migration` # Create a new migration file
140
+ - `arika make:job` # Create a new background job class
141
+
142
+ ### Database & Migrations
143
+ - `arika migrate` # Run pending database migrations
144
+ - `arika migrate:rollback` # Rollback the last database migration
145
+ - `arika migrate:fresh` # Drop all tables and re-run all migrations
146
+ - `arika db:seed` # Seed the database with records
147
+
148
+ ### Queue & Background Jobs
149
+ - `arika queue:work` # Start the background worker
150
+ - `arika queue:retry` # Retry a failed background job
151
+ - `arika route:list` # Display all registered application routes
134
152
 
135
153
  ---
136
154
 
@@ -142,7 +160,7 @@ We love our community! Please see our [Contributing Guide](CONTRIBUTING.md) to l
142
160
 
143
161
  ## 📝 License
144
162
 
145
- ArikaJS is licensed under the [Business Source License 1.1 (BSL-1.1)](../../LICENSE).
163
+ ArikaJS is open-source software licensed under the [MIT License](../../LICENSE).
146
164
 
147
165
  <div align="center">
148
166
 
@@ -153,8 +171,7 @@ ArikaJS is licensed under the [Business Source License 1.1 (BSL-1.1)](../../LICE
153
171
  ## 💬 Community & Support
154
172
 
155
173
  - 📖 [Documentation](https://github.com/arikajs/arikajs#readme)
156
- - 💬 [Discord Community](https://discord.gg/arikajs)
157
- - 🐦 [Twitter](https://twitter.com/arikajs)
174
+ - 💬 [Discord Community](https://discord.gg/XUTjzwjrHK)
158
175
  - 🐛 [Issue Tracker](https://github.com/arikajs/arikajs/issues)
159
176
 
160
177
  ---
package/package.json CHANGED
@@ -1,8 +1,14 @@
1
1
  {
2
2
  "name": "arikajs",
3
- "version": "0.10.10",
3
+ "version": "0.10.11",
4
4
  "description": "The ArikaJS Framework.",
5
- "license": "BSL-1.1",
5
+ "keywords": [
6
+ "arikajs",
7
+ "framework",
8
+ "node.js",
9
+ "typescript"
10
+ ],
11
+ "license": "MIT",
6
12
  "main": "dist/index.js",
7
13
  "types": "dist/index.d.ts",
8
14
  "files": [
@@ -13,29 +19,29 @@
13
19
  "@types/serve-static": "^2.2.0",
14
20
  "busboy": "^1.6.0",
15
21
  "serve-static": "^2.2.1",
16
- "@arikajs/auth": "0.10.10",
17
- "@arikajs/cache": "0.10.10",
18
- "@arikajs/carbon": "^0.10.10",
19
- "@arikajs/authorization": "0.10.10",
20
- "@arikajs/config": "0.10.10",
21
- "@arikajs/dispatcher": "0.10.10",
22
- "@arikajs/database": "0.10.10",
23
- "@arikajs/events": "0.10.10",
24
- "@arikajs/console": "0.10.10",
25
- "@arikajs/encryption": "0.10.10",
26
- "@arikajs/foundation": "0.10.10",
27
- "@arikajs/http": "0.10.10",
28
- "@arikajs/mail": "0.10.10",
29
- "@arikajs/logging": "0.10.10",
30
- "@arikajs/queue": "0.10.10",
31
- "@arikajs/localization": "0.10.10",
32
- "@arikajs/middleware": "0.10.10",
33
- "@arikajs/router": "0.10.10",
34
- "@arikajs/session": "0.10.10",
35
- "@arikajs/scheduler": "0.10.10",
36
- "@arikajs/storage": "0.10.10",
37
- "@arikajs/validation": "0.10.10",
38
- "@arikajs/view": "0.10.10"
22
+ "@arikajs/authorization": "0.10.11",
23
+ "@arikajs/auth": "0.10.11",
24
+ "@arikajs/carbon": "^0.10.11",
25
+ "@arikajs/cache": "0.10.11",
26
+ "@arikajs/config": "0.10.11",
27
+ "@arikajs/database": "0.10.11",
28
+ "@arikajs/console": "0.10.11",
29
+ "@arikajs/dispatcher": "0.10.11",
30
+ "@arikajs/encryption": "0.10.11",
31
+ "@arikajs/events": "0.10.11",
32
+ "@arikajs/foundation": "0.10.11",
33
+ "@arikajs/http": "0.10.11",
34
+ "@arikajs/localization": "0.10.11",
35
+ "@arikajs/mail": "0.10.11",
36
+ "@arikajs/logging": "0.10.11",
37
+ "@arikajs/middleware": "0.10.11",
38
+ "@arikajs/queue": "0.10.11",
39
+ "@arikajs/scheduler": "0.10.11",
40
+ "@arikajs/router": "0.10.11",
41
+ "@arikajs/session": "0.10.11",
42
+ "@arikajs/storage": "0.10.11",
43
+ "@arikajs/validation": "0.10.11",
44
+ "@arikajs/view": "0.10.11"
39
45
  },
40
46
  "devDependencies": {
41
47
  "@types/node": "^20.11.24",