generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from kiwilan/develop
2.0.0
- Loading branch information
Showing
20 changed files
with
1,195 additions
and
623 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
{ | ||
"intelephense.stubs": [ | ||
"apache", | ||
"bcmath", | ||
"bz2", | ||
"calendar", | ||
"com_dotnet", | ||
"Core", | ||
"ctype", | ||
"curl", | ||
"date", | ||
"dba", | ||
"dom", | ||
"enchant", | ||
"exif", | ||
"FFI", | ||
"fileinfo", | ||
"filter", | ||
"fpm", | ||
"ftp", | ||
"gd", | ||
"gettext", | ||
"gmp", | ||
"hash", | ||
"iconv", | ||
"imap", | ||
"intl", | ||
"json", | ||
"ldap", | ||
"libxml", | ||
"mbstring", | ||
"meta", | ||
"mysqli", | ||
"oci8", | ||
"odbc", | ||
"openssl", | ||
"pcntl", | ||
"pcre", | ||
"PDO", | ||
"pdo_ibm", | ||
"pdo_mysql", | ||
"pdo_pgsql", | ||
"pdo_sqlite", | ||
"pgsql", | ||
"Phar", | ||
"posix", | ||
"pspell", | ||
"random", | ||
"readline", | ||
"Reflection", | ||
"session", | ||
"shmop", | ||
"SimpleXML", | ||
"snmp", | ||
"soap", | ||
"sockets", | ||
"sodium", | ||
"SPL", | ||
"sqlite3", | ||
"standard", | ||
"superglobals", | ||
"sysvmsg", | ||
"sysvsem", | ||
"sysvshm", | ||
"tidy", | ||
"tokenizer", | ||
"xml", | ||
"xmlreader", | ||
"xmlrpc", | ||
"xmlwriter", | ||
"xsl", | ||
"Zend OPcache", | ||
"zip", | ||
"zlib", | ||
"imagick", | ||
"rar" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "install", | ||
"type": "shell", | ||
"command": "composer i", | ||
"problemMatcher": [], | ||
"presentation": { | ||
"revealProblems": "onProblem", | ||
"close": true | ||
} | ||
}, | ||
{ | ||
"label": "update", | ||
"type": "shell", | ||
"command": "composer update", | ||
"problemMatcher": [], | ||
"presentation": { | ||
"revealProblems": "onProblem", | ||
"close": true | ||
} | ||
}, | ||
{ | ||
"label": "tests", | ||
"type": "shell", | ||
"command": "composer test", | ||
"problemMatcher": [], | ||
"presentation": { | ||
"revealProblems": "onProblem", | ||
"close": true | ||
} | ||
}, | ||
{ | ||
"label": "merge-to-main", | ||
"type": "shell", | ||
"command": "git checkout main && git merge develop && git push && git checkout develop", | ||
"problemMatcher": [], | ||
"presentation": { | ||
"revealProblems": "onProblem", | ||
"close": true | ||
} | ||
}, | ||
{ | ||
"label": "pull-main", | ||
"type": "shell", | ||
"command": "git checkout main && git pull && git checkout develop && git merge main", | ||
"problemMatcher": [], | ||
"presentation": { | ||
"revealProblems": "onProblem", | ||
"close": true | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.