burasuk

Results 9 comments of burasuk

`composer show`: ```sh gnello/php-mattermost-driver v2.12.0 The Php Driver to interact with the Mattermost Web Service API guzzlehttp/guzzle 6.5.4 Guzzle is a PHP HTTP client library guzzlehttp/promises v1.3.1 Guzzle promises library...

Yes, i copy/paste command from readme. In an empty folder i run: `composer require php-http/curl-client nyholm/psr7 php-http/message pnz/mattermost-client` and then i get above message.

i see on master ![image](https://user-images.githubusercontent.com/7629077/83266393-11599680-a1c3-11ea-92d5-170a2ac96047.png) but on version 0.1.0 witch is download by composer it has: ![image](https://user-images.githubusercontent.com/7629077/83266508-33ebaf80-a1c3-11ea-8d14-8bb63f367a47.png) on my machine wants version 2 ![image](https://user-images.githubusercontent.com/7629077/83266722-8200b300-a1c3-11ea-992b-6dccbbefc4a6.png) witch is correct when i look...

when i want to remove existing notification on `timeout`, `dismissed`: ```ts const id = 123; // { const extendProps = Object.assign(notifyOpt, { remove: id }) notifier.notify(extendProps ); //

`--asar.unpack="node_modules/node-notifier/vendor/**"` doesn`t work for me I solved it like this(i used it in angular with electron project): `electron-packager . --overwrite --asar --platform=win32 --arch=x64 --extra-resource=dist/assets/img/some-icon.png` above command unpack icon to `resources`...

What is the state of this enhancement? In my company users thinks that this extension is completely useless because of this.

same here, if i remove `user` from `payee` method, i've got another error: `Call to undefined method App\Models\ModelName::reputations()`

Try to add like this: 1. Create file in `src/js/main.js` ```js import AOS from 'aos'; import 'aos/dist/aos.css' AOS.init() ``` 2. In `src/layouts/Layout.astro` ```js ...