Skip to content

Commit c26961d

Browse files
chore: init quality maintenance
2 parents 6bed8ee + 4d31082 commit c26961d

3 files changed

Lines changed: 65 additions & 0 deletions

File tree

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
.idea/
2+
.vscode/
3+
/vendor/
4+
node_modules/
5+
npm-debug.log
6+
yarn-error.log
7+
storage/*.key
8+
.env
9+
Homestead.yaml
10+
Homestead.json
11+
/.vagrant
12+
.phpunit.result.cache
13+
/public/build
14+
/storage/pail
15+
.env.backup
16+
.env.production
17+
.phpactor.json
18+
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

composer.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"name": "openapi/openapi-sdk",
3+
<<<<<<< HEAD
34
"description": "Openapi PHP Libraries (https://openapi.com)",
5+
=======
6+
"description": "OpenApi PHP Libraries (https://openapi.com)",
7+
>>>>>>> f44c43c47a8d98159ea0017846374da1be2b1f8c
48
"authors": [
59
{
610
"name": "Altravia",

0 commit comments

Comments
 (0)