Pisarev Alexey

Results 22 comments of Pisarev Alexey

Another option would be to expand the parameters instead of adding setters. What do you think? ```diff final class ChromeManager implements BrowserManagerInterface { ... private function getDefaultOptions(): array { return...

The update will soon come out, but you could create Pull Request with the correction of the problem.

Try to update the library to version 3.0.2. I tested the code and it's working. Specify your version of php and bit depth. Try to run this code. ```php

> PHP Warning: openssl_encrypt(): Unknown cipher algorithm in .../vendor/nelexa/zip/src/PhpZip/Crypto/WinZipAesEngine.php on line 176 This indicates that your php-extension openssl does not support the `AES-256-CTR` encryption method. A list of supported encryption...

Hello. To help you, answer the questions: 1. PHP version? 2. Version of the library. 3. 32 or 64-bit processor architecture? 4. Show stack. 5. You can attach an archive...

If there is nothing secret in the archive, you can send it to [email protected] and password. I will try to help you and fix the errors in the library, if...

Attach the created zip-archive and report the version of the library, PHP, OS.

Hello. 1. What version are you using? Upgrade to ^ 3.3. This version fixes a memory issue. 2. Files with a large size should not be created in a web...

Hi. Use the php function [`array_values()`](https://secure.php.net/manual/en/function.array-values.php). ```php $zipAllInfo = $zipFile->getAllInfo(); $zipAllInfo = array_values($zipAllInfo); var_dump($zipAllInfo); ```

Describe the task that you want to solve, and for which you need numeric indexes.