Skip to content

Commit 139c260

Browse files
chore(merge): merge origin/main into dev
2 parents a16429a + 4d31082 commit 139c260

24 files changed

Lines changed: 1930 additions & 409 deletions

.github/REPOINFO.txt

Whitespace-only changes.

.github/assets/repo-header-a3.png

70.3 KB
Loading

.github/assets/repo-header-a3.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Image Description Sheet
2+
-----------------------
3+
4+
File Name: repo-header-a3.png
5+
Format: PNG
6+
Dimensions: 830 x 173 pixels
7+
8+
Short Description:
9+
A banner image featuring the word "PHP" on the left, PHP code snippet in the background,
10+
and the Openapi logo on the right.
11+
12+
Purpose:
13+
This image is intended to be used as a header/banner for documentation or repository README.
14+
It visually associates Rust programming language with the Openapi SDK/client,
15+
giving a professional and modern look to the project materials.

.gitignore

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1-
vendor/
1+
.idea/
2+
.vscode/
3+
/vendor/
4+
node_modules/
5+
npm-debug.log
6+
yarn-error.log
7+
storage/*.key
28
.env
39
composer.lock
10+
Homestead.yaml
11+
Homestead.json
12+
/.vagrant
13+
.phpunit.result.cache
14+
/public/build
15+
/storage/pail
16+
.env.backup
17+
.env.production
18+
.phpactor.json
19+
auth.json

Makefile

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#!make
2+
3+
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
4+
# #
5+
# ____ _ #
6+
# / __ \____ ___ ____ ____ _____ (_) ® #
7+
# / / / / __ \/ _ \/ __ \/ __ `/ __ \/ / #
8+
# / /_/ / /_/ / __/ / / / /_/ / /_/ / / #
9+
# \____/ .___/\___/_/ /_/\__,_/ .___/_/ #
10+
# /_/ /_/ #
11+
# #
12+
# The Largest Certified API Marketplace #
13+
# Accelerate Digital Transformation • Simplify Processes • Lead Industry #
14+
# #
15+
# ═══════════════════════════════════════════════════════════════════════ #
16+
# #
17+
# Project: openapi-rust-sdk #
18+
# Version: 0.1.0 #
19+
# Author: Michael Cuffaro (@maiku1008) #
20+
# Copyright: (c) 2025 Openapi®. All rights reserved. #
21+
# License: MIT #
22+
# Maintainer: Francesco Bianco #
23+
# Contact: https://openapi.com/ #
24+
# Repository: [Repository URL] #
25+
# Documentation: [Docs URL] #
26+
# #
27+
# ═══════════════════════════════════════════════════════════════════════ #
28+
# #
29+
# "Truth lies at the source of the stream." #
30+
# — English Proverb #
31+
# #
32+
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
33+
34+
35+
## ====================
36+
## Development Commands
37+
## ====================
38+
39+
dev-push:
40+
@git config credential.helper 'cache --timeout=3600'
41+
@git add .
42+
@git commit -m "$$(read -p 'Commit message: ' msg; echo $$msg)" || true
43+
@git push

0 commit comments

Comments
 (0)