@artilingo/artiframe-cli 2.0.5 → 3.0.0
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.
- package/README.md +64 -118
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
<br />
|
|
6
6
|
|
|
7
|
-
**Zero-dependency · Native PHP ·
|
|
7
|
+
**Zero-dependency · Native PHP · DevOps Studio · DB Designer · Live Server**
|
|
8
8
|
|
|
9
9
|
<br />
|
|
10
10
|
|
|
@@ -27,205 +27,151 @@
|
|
|
27
27
|
|
|
28
28
|
## 🇹🇷 Türkçe
|
|
29
29
|
|
|
30
|
-
**ArtiFrame**,
|
|
30
|
+
**ArtiFrame 3.0**, native PHP için sadece bir framework değil, eksiksiz bir **geliştirme ekosistemidir**. Sıfır dış bağımlılık felsefesine sadık kalarak, artık içinde DevOps Studio (GUI), DB Studio (Global ER Tasarımcısı) ve Server Studio (Canlı Log Monitörü) gibi muazzam arayüzler barındırır.
|
|
31
31
|
|
|
32
|
-
###
|
|
32
|
+
### Yeni v3.0 Özellikleri (The Studio Update)
|
|
33
33
|
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
34
|
+
- 🎨 **DevOps Studio** — `artiframe devops` komutuyla açılan yerleşik masaüstü GUI. API Testleri (Inspector), Cron Tasarımcısı, Supervisor Yönetimi ve Env Optimize işlemlerini görsel olarak yönetin!
|
|
35
|
+
- 🗄️ **DB Studio** — Sürükle bırak ile veritabanı şemalarınızı tasarlayın ve `db:onproject` ile doğrudan projenize entegre edin.
|
|
36
|
+
- 🌐 **Server Studio** — `artiframe serve` ile projenizi anında yayına alın ve HTTP isteklerini canlı log (Gateway logger) üzerinden analiz edin.
|
|
37
|
+
- 📦 **Workspace Mimarisi** — Projeleriniz artık global ve izole bir workspace dizininde (`C:\ArtiFrame` veya `~/ArtiFrame`) güvenle yaşar.
|
|
38
|
+
- 🚀 **Semantik Sürüm ve Eklenti Yönetimi** — `version upgrade` ve `add <package>` gibi yerleşik paket/sürüm yöneticileriyle Composer olmadan hayatınıza devam edin.
|
|
39
|
+
- 🚫 **Sıfır Bağımlılık** — Güvenlik (XSS, CSRF) ve mimari altyapı hala native PHP.
|
|
39
40
|
|
|
40
41
|
### Kurulum
|
|
41
42
|
|
|
42
|
-
> PHP 8.1
|
|
43
|
+
> Node.js ve PHP 8.1+ gereklidir.
|
|
43
44
|
|
|
44
45
|
```bash
|
|
45
46
|
npm install -g @artilingo/artiframe-cli
|
|
46
47
|
```
|
|
48
|
+
*(Kurulum sonrasında işletim sisteminize uygun global Workspace dizini otomatik olarak oluşturulacaktır.)*
|
|
47
49
|
|
|
48
50
|
### Kullanım
|
|
49
51
|
|
|
50
52
|
```bash
|
|
51
|
-
#
|
|
53
|
+
# Grafik Arayüzlü Kontrol Merkezini Aç (YENİ!)
|
|
54
|
+
artiframe devops
|
|
55
|
+
|
|
56
|
+
# İnteraktif CLI Kabuğunu Aç
|
|
52
57
|
artiframe
|
|
53
58
|
|
|
54
59
|
# Yeni proje oluştur
|
|
55
60
|
artiframe> new benim-projem
|
|
56
61
|
|
|
57
|
-
#
|
|
58
|
-
artiframe>
|
|
62
|
+
# Veritabanını SQL olarak dışa aktar (Veri + Şema)
|
|
63
|
+
artiframe> db:export within
|
|
59
64
|
|
|
60
|
-
# API
|
|
65
|
+
# View veya API oluştur
|
|
66
|
+
artiframe> make:view admin/kullanicilar.php
|
|
61
67
|
artiframe> make:api standart api/auth/giris.php
|
|
62
|
-
|
|
63
|
-
# Sürüm güncelle
|
|
64
|
-
artiframe> version upgrade minor
|
|
65
68
|
```
|
|
66
69
|
|
|
67
70
|
---
|
|
68
71
|
|
|
69
72
|
## 🇬🇧 English
|
|
70
73
|
|
|
71
|
-
**ArtiFrame** is
|
|
74
|
+
**ArtiFrame 3.0** is no longer just a framework for native PHP—it's a complete **development ecosystem**. Staying true to its zero external dependency philosophy, it now ships with massive graphical interfaces including DevOps Studio (GUI), DB Studio (Global ER Designer), and Server Studio (Live Log Monitor).
|
|
72
75
|
|
|
73
|
-
###
|
|
76
|
+
### New in v3.0 (The Studio Update)
|
|
74
77
|
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
78
|
+
- 🎨 **DevOps Studio** — Built-in desktop GUI launched via `artiframe devops`. Manage API Inspections, Cron jobs, Supervisor configs, and Env optimization visually!
|
|
79
|
+
- 🗄️ **DB Studio** — Drag and drop database schema designer. Sync schemas directly into your active project via `db:onproject`.
|
|
80
|
+
- 🌐 **Server Studio** — Launch your project instantly with `artiframe serve` and monitor HTTP requests live via the gateway logger.
|
|
81
|
+
- 📦 **Global Workspace** — Projects are now securely sandboxed in a global workspace directory (`C:\ArtiFrame` or `~/ArtiFrame`).
|
|
82
|
+
- 🚀 **Version & Package Manager** — Built-in `version upgrade` and `add <package>` commands to survive without Composer.
|
|
83
|
+
- 🚫 **Zero Dependencies** — Security (XSS, CSRF) and architectural foundations are still purely native PHP.
|
|
80
84
|
|
|
81
85
|
### Installation
|
|
82
86
|
|
|
83
|
-
> Requires PHP 8.1
|
|
87
|
+
> Requires Node.js and PHP 8.1+.
|
|
84
88
|
|
|
85
89
|
```bash
|
|
86
90
|
npm install -g @artilingo/artiframe-cli
|
|
87
91
|
```
|
|
92
|
+
*(Your global Workspace directory will be automatically generated post-installation.)*
|
|
88
93
|
|
|
89
94
|
### Usage
|
|
90
95
|
|
|
91
96
|
```bash
|
|
92
|
-
#
|
|
97
|
+
# Launch the Graphical Control Center (NEW!)
|
|
98
|
+
artiframe devops
|
|
99
|
+
|
|
100
|
+
# Open interactive CLI shell
|
|
93
101
|
artiframe
|
|
94
102
|
|
|
95
103
|
# Create a new project
|
|
96
104
|
artiframe> new my-project
|
|
97
105
|
|
|
98
|
-
#
|
|
99
|
-
artiframe>
|
|
106
|
+
# Export database to SQL (Data + Schema)
|
|
107
|
+
artiframe> db:export within
|
|
100
108
|
|
|
101
|
-
# Generate
|
|
109
|
+
# Generate a view or API
|
|
110
|
+
artiframe> make:view admin/users.php
|
|
102
111
|
artiframe> make:api standart api/auth/login.php
|
|
103
|
-
|
|
104
|
-
# Update version
|
|
105
|
-
artiframe> version upgrade minor
|
|
106
112
|
```
|
|
107
113
|
|
|
108
114
|
---
|
|
109
115
|
|
|
110
116
|
## 🇩🇪 Deutsch
|
|
111
117
|
|
|
112
|
-
**ArtiFrame** ist ein
|
|
113
|
-
|
|
114
|
-
### Funktionen
|
|
118
|
+
**ArtiFrame 3.0** ist nicht mehr nur ein Framework für natives PHP – es ist ein komplettes **Entwicklungsökosystem**. Es bleibt seiner Philosophie (Null externe Abhängigkeiten) treu und wird nun mit grafischen Schnittstellen wie DevOps Studio (GUI), DB Studio (Global ER Designer) und Server Studio (Live Log Monitor) ausgeliefert.
|
|
115
119
|
|
|
116
|
-
|
|
117
|
-
- 🛡️ **Sicherheit zuerst** — XSS, CSRF, SQL-Injection-Schutz standardmäßig integriert
|
|
118
|
-
- ⚡ **Schnelle Einrichtung** — Vollständiges Projektskelett mit einem einzigen Befehl
|
|
119
|
-
- 🌍 **5 Sprachunterstützung** — TR · EN · DE · FR · ES
|
|
120
|
-
- 📐 **Striktes Regelwerk** — `data-js`-Architektur, duales Bootstrapper-Modell, konsistente Verzeichnisstruktur
|
|
121
|
-
|
|
122
|
-
### Installation
|
|
120
|
+
### Neu in v3.0 (Das Studio-Update)
|
|
123
121
|
|
|
124
|
-
|
|
122
|
+
- 🎨 **DevOps Studio** — Integrierte Desktop-GUI, die über `artiframe devops` gestartet wird (API-Inspektor, Cron-Designer, Env-Optimierung).
|
|
123
|
+
- 🗄️ **DB Studio** — Drag & Drop Datenbank-Schema-Designer.
|
|
124
|
+
- 🌐 **Server Studio** — Überwachen Sie HTTP-Anfragen live via `artiframe serve`.
|
|
125
|
+
- 📦 **Global Workspace** — Projekte leben nun sicher in einem globalen Verzeichnis (`C:\ArtiFrame` oder `~/ArtiFrame`).
|
|
125
126
|
|
|
127
|
+
### Installation & Verwendung
|
|
126
128
|
```bash
|
|
127
129
|
npm install -g @artilingo/artiframe-cli
|
|
128
|
-
```
|
|
129
|
-
|
|
130
|
-
### Verwendung
|
|
131
|
-
|
|
132
|
-
```bash
|
|
133
|
-
# Öffnet die interaktive Shell
|
|
134
|
-
artiframe
|
|
135
130
|
|
|
136
|
-
#
|
|
137
|
-
artiframe
|
|
138
|
-
|
|
139
|
-
# View erstellen
|
|
140
|
-
artiframe> make:view admin/benutzer.php
|
|
141
|
-
|
|
142
|
-
# API-Endpunkt erstellen
|
|
143
|
-
artiframe> make:api standart api/auth/anmelden.php
|
|
144
|
-
|
|
145
|
-
# Version aktualisieren
|
|
146
|
-
artiframe> version upgrade minor
|
|
131
|
+
# GUI Starten
|
|
132
|
+
artiframe devops
|
|
147
133
|
```
|
|
148
134
|
|
|
149
135
|
---
|
|
150
136
|
|
|
151
137
|
## 🇫🇷 Français
|
|
152
138
|
|
|
153
|
-
**ArtiFrame** est un framework de développement
|
|
139
|
+
**ArtiFrame 3.0** n'est plus seulement un framework, c'est un **écosystème de développement** complet. Il est désormais livré avec des interfaces graphiques massives : DevOps Studio (GUI), DB Studio (Global ER Designer) et Server Studio (Live Log Monitor).
|
|
154
140
|
|
|
155
|
-
###
|
|
141
|
+
### Nouveautés v3.0 (La mise à jour Studio)
|
|
156
142
|
|
|
157
|
-
-
|
|
158
|
-
-
|
|
159
|
-
-
|
|
160
|
-
-
|
|
161
|
-
- 📐 **Règles Strictes** — Architecture `data-js`, modèle double bootstrapper, structure de répertoires cohérente
|
|
162
|
-
|
|
163
|
-
### Installation
|
|
164
|
-
|
|
165
|
-
> Nécessite PHP 8.1 ou supérieur.
|
|
143
|
+
- 🎨 **DevOps Studio** — GUI bureau intégrée lancée via `artiframe devops`.
|
|
144
|
+
- 🗄️ **DB Studio** — Concepteur de schéma de base de données par glisser-déposer.
|
|
145
|
+
- 🌐 **Server Studio** — Serveur HTTP intégré avec journalisation en direct (`artiframe serve`).
|
|
146
|
+
- 📦 **Espace de Travail** — Les projets sont désormais isolés dans un répertoire global (`C:\ArtiFrame` ou `~/ArtiFrame`).
|
|
166
147
|
|
|
148
|
+
### Installation & Utilisation
|
|
167
149
|
```bash
|
|
168
150
|
npm install -g @artilingo/artiframe-cli
|
|
169
|
-
```
|
|
170
|
-
|
|
171
|
-
### Utilisation
|
|
172
|
-
|
|
173
|
-
```bash
|
|
174
|
-
# Ouvre le shell interactif
|
|
175
|
-
artiframe
|
|
176
|
-
|
|
177
|
-
# Créer un nouveau projet
|
|
178
|
-
artiframe> new mon-projet
|
|
179
|
-
|
|
180
|
-
# Générer une vue
|
|
181
|
-
artiframe> make:view admin/utilisateurs.php
|
|
182
151
|
|
|
183
|
-
#
|
|
184
|
-
artiframe
|
|
185
|
-
|
|
186
|
-
# Mettre à jour la version
|
|
187
|
-
artiframe> version upgrade minor
|
|
152
|
+
# Lancer la GUI
|
|
153
|
+
artiframe devops
|
|
188
154
|
```
|
|
189
155
|
|
|
190
156
|
---
|
|
191
157
|
|
|
192
158
|
## 🇪🇸 Español
|
|
193
159
|
|
|
194
|
-
**ArtiFrame** es un framework
|
|
195
|
-
|
|
196
|
-
### Características
|
|
160
|
+
**ArtiFrame 3.0** ya no es solo un framework, es un **ecosistema de desarrollo** completo. Ahora incluye interfaces gráficas masivas: DevOps Studio (GUI), DB Studio (Global ER Designer) y Server Studio (Live Log Monitor).
|
|
197
161
|
|
|
198
|
-
|
|
199
|
-
- 🛡️ **Seguridad Primero** — Protección XSS, CSRF, inyección SQL integrada por defecto
|
|
200
|
-
- ⚡ **Configuración Rápida** — Esqueleto de proyecto completo con un solo comando
|
|
201
|
-
- 🌍 **Soporte 5 Idiomas** — TR · EN · DE · FR · ES
|
|
202
|
-
- 📐 **Reglas Estrictas** — Arquitectura `data-js`, modelo dual de bootstrapper, estructura de directorios consistente
|
|
162
|
+
### Novedades en v3.0 (La actualización Studio)
|
|
203
163
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
164
|
+
- 🎨 **DevOps Studio** — GUI de escritorio integrada lanzada mediante `artiframe devops`.
|
|
165
|
+
- 🗄️ **DB Studio** — Diseñador visual de esquemas de bases de datos.
|
|
166
|
+
- 🌐 **Server Studio** — Servidor HTTP integrado con monitor en vivo (`artiframe serve`).
|
|
167
|
+
- 📦 **Espacio de Trabajo** — Los proyectos ahora residen en un directorio global (`C:\ArtiFrame` o `~/ArtiFrame`).
|
|
207
168
|
|
|
169
|
+
### Instalación y Uso
|
|
208
170
|
```bash
|
|
209
171
|
npm install -g @artilingo/artiframe-cli
|
|
210
|
-
```
|
|
211
|
-
|
|
212
|
-
### Uso
|
|
213
|
-
|
|
214
|
-
```bash
|
|
215
|
-
# Abre el shell interactivo
|
|
216
|
-
artiframe
|
|
217
|
-
|
|
218
|
-
# Crear un nuevo proyecto
|
|
219
|
-
artiframe> new mi-proyecto
|
|
220
|
-
|
|
221
|
-
# Generar una vista
|
|
222
|
-
artiframe> make:view admin/usuarios.php
|
|
223
|
-
|
|
224
|
-
# Generar un endpoint API
|
|
225
|
-
artiframe> make:api standart api/auth/login.php
|
|
226
172
|
|
|
227
|
-
#
|
|
228
|
-
artiframe
|
|
173
|
+
# Iniciar la GUI
|
|
174
|
+
artiframe devops
|
|
229
175
|
```
|
|
230
176
|
|
|
231
177
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artilingo/artiframe-cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "ArtiFrame — Zero-dependency native PHP framework with a powerful multilingual CLI. Scaffold projects, generate views, APIs and classes instantly.",
|
|
5
5
|
"main": "bin/artiframe.js",
|
|
6
6
|
"bin": {
|