Skip to content

Commit

Permalink
更新
Browse files Browse the repository at this point in the history
Signed-off-by: Ouyang Chunhui <[email protected]>
  • Loading branch information
jack9603301 committed Dec 23, 2024
1 parent d57c673 commit 164940e
Show file tree
Hide file tree
Showing 390 changed files with 9,004 additions and 26,354 deletions.
8 changes: 8 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: grav
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
custom: # Replace with a single custom sponsorship URL
4 changes: 2 additions & 2 deletions .github/workflows/grav_auto_deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Hexo automatic deployment
name: Grav automatic deployment

on:
push:
Expand Down Expand Up @@ -30,4 +30,4 @@ jobs:
sudo lxc file push -p -r ../public/qhjack qhjack/var/www/
- name: Autorun SelfUpgrade
run: |
sudo lxc exec qhjack /var/www/qhjack/bin/auto-upgrade.fish
sudo lxc exec qhjack /var/www/qhjack/scripts/auto-upgrade.fish
44 changes: 44 additions & 0 deletions .phan/config.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php
return [
"target_php_version" => null,
'pretend_newer_core_functions_exist' => true,
'allow_missing_properties' => false,
'null_casts_as_any_type' => false,
'null_casts_as_array' => false,
'array_casts_as_null' => false,
'strict_method_checking' => true,
'quick_mode' => false,
'simplify_ast' => false,
'directory_list' => [
'.',
],
"exclude_analysis_directory_list" => [
'vendor/'
],
'exclude_file_list' => [
'system/src/Grav/Common/Errors/Resources/layout.html.php',
'tests/_support/AcceptanceTester.php',
'tests/_support/FunctionalTester.php',
'tests/_support/UnitTester.php',
],
'autoload_internal_extension_signatures' => [
'memcached' => '.phan/internal_stubs/memcached.phan_php',
'memcache' => '.phan/internal_stubs/memcache.phan_php',
'redis' => '.phan/internal_stubs/Redis.phan_php',
],
'plugins' => [
'AlwaysReturnPlugin',
'UnreachableCodePlugin',
'DuplicateArrayKeyPlugin',
'PregRegexCheckerPlugin',
'PrintfCheckerPlugin',
],
'suppress_issue_types' => [
'PhanUnreferencedUseNormal',
'PhanTypeObjectUnsetDeclaredProperty',
'PhanTraitParentReference',
'PhanTypeInvalidThrowsIsInterface',
'PhanRequiredTraitNotAdded',
'PhanDeprecatedFunction', // Uncomment this to see all the deprecated calls
]
];
Loading

0 comments on commit 164940e

Please sign in to comment.