Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.227.134.95
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
univadmin /
sendgrid-php /
[ HOME SHELL ]
Name
Size
Permission
Action
examples
[ DIR ]
drwxrwxr-x
lib
[ DIR ]
drwxrwxr-x
static
[ DIR ]
drwxrwxr-x
vendor
[ DIR ]
drwxrwxr-x
.editorconfig
135
B
-rw-r--r--
.env.sample
27
B
-rw-r--r--
CHANGELOG.md
38.32
KB
-rw-r--r--
CODE_OF_CONDUCT.md
3.17
KB
-rw-r--r--
CONTRIBUTING.md
5.81
KB
-rw-r--r--
Dockerfile
335
B
-rw-r--r--
FIRST_TIMERS.md
2.85
KB
-rw-r--r--
ISSUE_TEMPLATE.md
740
B
-rw-r--r--
LICENSE
1.07
KB
-rw-r--r--
Makefile
1000
B
-rw-r--r--
PULL_REQUEST_TEMPLATE.md
1.57
KB
-rw-r--r--
README.md
7.55
KB
-rw-r--r--
TROUBLESHOOTING.md
6.08
KB
-rw-r--r--
UPGRADE.md
216
B
-rw-r--r--
USAGE.md
200.9
KB
-rw-r--r--
USE_CASES.md
45.26
KB
-rw-r--r--
composer.lock
72.38
KB
-rw-r--r--
phpcs.xml
10.07
KB
-rw-r--r--
sendgrid-php.php
997
B
-rw-r--r--
twilio_sendgrid_logo.png
14.25
KB
-rw-r--r--
vskubcollegesendmail.php
1.2
KB
-rwxr--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Makefile
.PHONY: clean install ci-install test test-integ test-docker bundle clean: @rm -rf vendor composer.lock sendgrid-php.zip php_version = `php -v | head -n 1 | cut -d " " -f 2` install: clean ifdef GIT_HUB_TOKEN composer config -g github-oauth.github.com $(GIT_HUB_TOKEN) endif composer install ifeq ($(dependencies), lowest) composer update --prefer-lowest --prefer-stable -n endif ci-install: clean composer install --no-dev test: vendor/bin/phpunit test/unit --filter test* vendor/bin/phpcs lib/*/* vendor/bin/phpstan analyse --memory-limit 1G --no-progress --level 1 lib test test-integ: test vendor/bin/phpunit test --filter test* version ?= latest test-docker: curl -s https://raw.githubusercontent.com/sendgrid/sendgrid-oai/HEAD/prism/prism.sh -o prism.sh dependencies=lowest version=$(version) bash ./prism.sh dependencies=highest version=$(version) bash ./prism.sh bundle: ci-install zip -r sendgrid-php.zip . -x \*.git\* \*composer.json\* \*scripts\* \*test\* \*prism\*
Close