OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
auth
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:32:56 AM
rwxr-xr-x
📄
.editorconfig
390 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📁
.git
-
08/12/2024 10:34:51 AM
rwxr-xr-x
📄
.gitattributes
343 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📁
.github
-
08/12/2024 10:34:53 AM
rwxr-xr-x
📄
.gitignore
127 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📄
.php-cs-fixer.dist.php
780 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📄
CHANGELOG.md
15.94 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
CODE_OF_CONDUCT.md
1.98 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
COPYING
11.27 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
LICENSE
10.21 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
README.md
11.68 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
SECURITY.md
336 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📄
VERSION
8 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📄
autoload.php
1.12 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
composer.json
1.22 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
phpstan.neon.dist
200 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📄
phpunit.xml.dist
684 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📄
renovate.json
76 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📁
src
-
08/12/2024 10:33:42 AM
rwxr-xr-x
📁
tests
-
08/12/2024 10:36:16 AM
rwxr-xr-x
Editing: autoload.php
Close
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ function oauth2client_php_autoload($className) { $classPath = explode('_', $className); if ($classPath[0] != 'Google') { return; } if (count($classPath) > 3) { // Maximum class file path depth in this project is 3. $classPath = array_slice($classPath, 0, 3); } $filePath = dirname(__FILE__) . '/src/' . implode('/', $classPath) . '.php'; if (file_exists($filePath)) { require_once $filePath; } } spl_autoload_register('oauth2client_php_autoload');