8000 init · solvercaptcha/solvecaptcha-php@d23b59d · GitHub
[go: up one dir, main page]

Skip to content

Commit d23b59d

Browse files
init
1 parent 479b82f commit d23b59d

File tree

104 files changed

+6010
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+6010
-2
lines changed

.gitignore

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
#PHP and development related
2+
.idea
3+
/vendor
4+
composer.phar
5+
6+
# Mac OS General
7+
.DS_Store
8+
.AppleDouble
9+
.LSOverride
10+
11+
# Icon must end with two \r
12+
Icon
13+
14 F438 +
15+
# Thumbnails
16+
._*
17+
18+
# Files that might appear in the root of a volume
19+
.DocumentRevisions-V100
20+
.fseventsd
21+
.Spotlight-V100
22+
.TemporaryItems
23+
.Trashes
24+
.VolumeIcon.icns
25+
.com.apple.timemachine.donotpresent
26+
27+
# Directories potentially created on remote AFP share
28+
.AppleDB
29+
.AppleDesktop
30+
Network Trash Folder
31+
Temporary Items
32+
.apdisk
33+
34+
35+
# Windows thumbnail cache files
36+
Thumbs.db
37+
Thumbs.db:encryptable
38+
ehthumbs.db
39+
ehthumbs_vista.db
40+
41+
# Dump file
42+
*.stackdump
43+
44+
# Folder config file
45+
[Dd]esktop.ini
46+
47+
# Recycle Bin used on file shares
48+
$RECYCLE.BIN/
49+
50+
# Windows Installer files
51+
*.cab
52+
*.msi
53+
*.msix
54+
*.msm
55+
*.msp
56+
57+
# Windows shortcuts
58+
*.lnk
59+
60+
# Linux possible garbage
61+
*~
62+
63+
# temporary files which can be created if a process still has a handle open of a deleted file
64+
.fuse_hidden*
65+
66+
# KDE directory preferences
67+
.directory
68+
69+
# Linux trash folder which might appear on any partition or disk
70+
.Trash-*
71+
72+
# .nfs files are created when an open file is removed but is still being accessed
73+
.nfs*
74+
75+
# PHPUnit cache
76+
.phpunit.result.cache

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Solvecaptcha
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)
0