Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.225.54.37
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
vendor /
phpmyadmin /
sql-parser /
Delete
Unzip
Name
Size
Permission
Date
Action
bin
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
locale
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
src
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
CHANGELOG.md
13.26
KB
-rw-r--r--
2021-02-05 18:31
CODE_OF_CONDUCT.md
3.27
KB
-rw-r--r--
2021-02-05 18:31
CONTRIBUTING.md
1.13
KB
-rw-r--r--
2021-02-05 18:31
LICENSE.txt
17.67
KB
-rw-r--r--
2021-02-05 18:31
README.md
3.78
KB
-rw-r--r--
2021-02-05 18:31
composer.json
1.61
KB
-rw-r--r--
2021-02-05 18:31
phpunit.xml.dist
1.61
KB
-rw-r--r--
2021-02-05 18:31
Save
Rename
# Contributing to SQL Parser ## Reporting issues Our issue tracker is hosted at GitHub: https://github.com/phpmyadmin/sql-parser/issues Please search for existing issues before reporting new ones. ## Working with Git checkout The dependencies are managed by Composer, to get them all installed (or update on consequent runs) do: ``` composer update ``` ## Submitting patches Please submit your patches using GitHub pull requests, this allows us to review them and to run automated tests on the code. ## Coding standards We do follow PSR-1 and PSR-2 coding standards. You can use phpcbf to fix the code to match our expectations: ``` ./vendor/bin/phpcbf ``` ## Testsuite Our code comes with quite comprehensive testsuite, it is automatically executed on every commit and pull request, you can also run it locally: ``` ./vendor/bin/phpunit ``` The testsuite relies on fixtures of parser states, in case you need to regenerate some of these there are helper scripts in tools directory: ``` # Remove file you want to regenerate rm tests/data/parser/parse.out # Run the generator located in the tools directory ./tools/run_generators.sh ```