Can only be installed via Composer 2. See https://blog.packagist.com/composer-2-0-is-now-available/
Run the following command:
composer require --dev vkcom/noverifyAfter NoVerify is installed as a dependency, run the following command to download the binary.
./vendor/bin/noverify-getThe ready-to-run binary will be placed in the same folder and can be launched with the next command:
./vendor/bin/noverifyBy default, the latest available version is downloaded, but you can install other versions, see help command for details.
For example:
./vendor/bin/noverify-get --version 0.3.0vkcom/noverify package requires the ext-zip extension installed on the system, if you receive an error that it is not installed, then install it with the following command (replace the version with the PHP version you need):
On Ubuntu:
sudo apt install php8.0-zip
On macOS:
brew update
brew install php@8.0
brew link php@8.0
brew link php@8.0 --force
If you get an error "not supported arch" or "not supported os", then create a new issue in which describe what values the script displayed and this version can be added to releases.
Create an issue if you have any problems with the installation.
Go to the Releases page and download the latest version for your OS.
Check that it launches correctly:
noverify version(here and then, we suppose that the noverify binary is available by name)
You're done! Proceed to the Getting started page.
Make sure you have Go version 1.16 or higher installed.
Run the following command:
$ go get github.com/VKCOM/noverifyNoVerify will be installed to $GOPATH/bin/noverify, which usually expands to $HOME/go/bin/noverify.
For convenience, you can add this folder to the PATH.
Make sure you have Go version 1.16 or higher installed.
Clone this repository and run make build:
git clone https://github.com/vkcom/noverify
cd noverify
make buildOptionally, you can pass a name of the binary:
make build BIN_NAME=noverify.binA resulting binary will be placed in the ./build folder.