Skip to content

Commit f116c9f

Browse files
committed
new version
1 parent 2b1fceb commit f116c9f

35 files changed

Lines changed: 4567 additions & 2114 deletions

.gitignore

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
# PHP Terminal - Git Ignore File
2+
3+
# Environment files
4+
.env
5+
.env.local
6+
.env.production
7+
.env.staging
8+
9+
# Cache and temporary files
10+
phpterminal/cache/*
11+
phpterminal/logs/*
12+
phpterminal/uploads/*
13+
!phpterminal/cache/.gitkeep
14+
!phpterminal/logs/.gitkeep
15+
!phpterminal/uploads/.gitkeep
16+
17+
# System files
18+
.DS_Store
19+
.DS_Store?
20+
._*
21+
.Spotlight-V100
22+
.Trashes
23+
ehthumbs.db
24+
Thumbs.db
25+
26+
# IDE and editor files
27+
.vscode/
28+
.idea/
29+
*.swp
30+
*.swo
31+
*~
32+
.project
33+
.settings/
34+
*.sublime-*
35+
36+
# Backup files
37+
*.bak
38+
*.backup
39+
*.old
40+
*.orig
41+
42+
# Log files
43+
*.log
44+
logs/
45+
log/
46+
47+
# Temporary files
48+
tmp/
49+
temp/
50+
*.tmp
51+
52+
# Node modules (if using npm)
53+
node_modules/
54+
npm-debug.log*
55+
yarn-debug.log*
56+
yarn-error.log*
57+
58+
# Composer (if using)
59+
vendor/
60+
composer.lock
61+
62+
# Build artifacts
63+
build/
64+
dist/
65+
*.min.js
66+
*.min.css
67+
68+
# Security sensitive files
69+
config/local.php
70+
config/production.php
71+
*.key
72+
*.pem
73+
*.crt
74+
*.p12
75+
76+
# User uploaded content
77+
uploads/
78+
files/
79+
media/uploads/
80+
81+
# Database files
82+
*.sqlite
83+
*.db
84+
85+
# PHP specific
86+
*.php~
87+
*.php.bak
88+
89+
# Documentation build
90+
docs/build/
91+
docs/_build/
92+
93+
# Test files
94+
tests/tmp/
95+
tests/cache/
96+
tests/logs/
97+
98+
# Coverage reports
99+
coverage/
100+
*.coverage
101+
*.lcov
102+
103+
# Performance monitoring
104+
*.prof
105+
*.cachegrind

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Egger & Co
4+
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:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
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.

0 commit comments

Comments
 (0)