create-prisma-php-app 1.25.1 → 1.25.500
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 +20 -16
- package/dist/bootstrap.php +132 -203
- package/dist/index.js +2 -2
- package/dist/settings/paths.php +0 -4
- package/dist/src/Lib/AI/ChatGPTClient.php +4 -4
- package/dist/src/Lib/Auth/Auth.php +26 -27
- package/dist/src/Lib/FileManager/UploadFile.php +2 -2
- package/dist/src/Lib/Headers/Boom.php +3 -3
- package/dist/src/Lib/MainLayout.php +38 -18
- package/dist/src/Lib/Middleware/AuthMiddleware.php +19 -18
- package/dist/src/Lib/PrismaPHPSettings.php +43 -0
- package/dist/src/Lib/Request.php +346 -0
- package/dist/src/Lib/StateManager.php +34 -52
- package/dist/src/app/js/index.js +1 -1
- package/dist/src/app/js/json5.min.js +1 -0
- package/dist/src/app/layout.php +5 -4
- package/dist/src/app/swagger-docs-layout.php +26 -0
- package/package.json +1 -1
- package/dist/settings/public-functions.php +0 -159
- package/dist/settings/request-methods.php +0 -129
- package/dist/swagger-docs-layout.php +0 -17
package/README.md
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
# Create Prisma PHP App
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
🚀 Launch Your Next-Level PHP Project with Prisma PHP
|
|
4
|
+
|
|
5
|
+
**Prisma PHP**: A Cutting-Edge Framework Merging PHP's Power with Prisma's ORM Excellence
|
|
4
6
|
|
|
5
7
|
## Introduction
|
|
6
8
|
|
|
7
|
-
`create-prisma-php-app` is
|
|
9
|
+
`create-prisma-php-app` is a groundbreaking command-line tool designed to empower PHP developers with the modern ORM capabilities of Prisma. With this tool, you’ll be able to harness the full potential of PHP’s server-side robustness alongside Prisma’s cutting-edge database management. Whether you’re working on small-scale projects or building complex, enterprise-level applications, `create-prisma-php-app` offers unmatched flexibility and ease to elevate your development experience.
|
|
8
10
|
|
|
9
|
-
##
|
|
11
|
+
## Quick Start
|
|
10
12
|
|
|
11
|
-
|
|
13
|
+
Creating a new Prisma PHP project is just one command away! Get started by running the following command in your terminal:
|
|
12
14
|
|
|
13
15
|
```bash
|
|
14
16
|
npx create-prisma-php-app@latest
|
|
15
17
|
```
|
|
16
18
|
|
|
17
|
-
|
|
19
|
+
This interactive process will prompt you for key setup options, including Tailwind CSS integration and other essential features.
|
|
18
20
|
|
|
19
21
|
```bash
|
|
20
22
|
✔ Would you like to use Tailwind CSS? … No / Yes
|
|
@@ -22,26 +24,28 @@ You will be asked for the project name, and then if you want to include Tailwind
|
|
|
22
24
|
|
|
23
25
|
Select "Yes" to include Tailwind CSS in your project.
|
|
24
26
|
|
|
25
|
-
##
|
|
27
|
+
## 📚 Documentation
|
|
28
|
+
|
|
29
|
+
For comprehensive guides and full documentation, visit the [Prisma PHP](https://prismaphp.tsnc.tech/) website
|
|
26
30
|
|
|
27
|
-
## Video Tutorial
|
|
31
|
+
## 🎥 Video Tutorial
|
|
28
32
|
|
|
29
|
-
|
|
33
|
+
Prefer a visual walkthrough? Check out our video series for a step-by-step guide on how to use `create-prisma-php-app`:
|
|
30
34
|
|
|
31
|
-
[
|
|
35
|
+
[Watch the Prisma PHP Video Series](https://www.youtube.com/playlist?list=PLS-62wu4j8sS0Ia7ZkWHQ41W85Ice85PA)
|
|
32
36
|
|
|
33
|
-
## Contributing
|
|
37
|
+
## 💡 Contributing
|
|
34
38
|
|
|
35
|
-
|
|
39
|
+
We welcome contributions to improve `create-prisma-php-app`. If you have ideas, found bugs, or want to make improvements, feel free to open an issue or submit a pull request on the repository.
|
|
36
40
|
|
|
37
|
-
## License
|
|
41
|
+
## 📄 License
|
|
38
42
|
|
|
39
43
|
`create-prisma-php-app` is under the MIT License. See LICENSE for details.
|
|
40
44
|
|
|
41
|
-
## Author
|
|
45
|
+
## 👤 Author
|
|
42
46
|
|
|
43
|
-
|
|
47
|
+
This project is developed and maintained by [The Steel Ninja Code](https://thesteelninjacode.com/), continuously pushing the boundaries of PHP development.
|
|
44
48
|
|
|
45
|
-
## Contact Us
|
|
49
|
+
## 📧 Contact Us
|
|
46
50
|
|
|
47
|
-
|
|
51
|
+
Got questions or feedback? Reach out to us at [thesteelninjacode@gmail.com](mailto:thesteelninjacode@gmail.com). We’d love to hear from you!
|