Compare commits

...

13 Commits

Author SHA1 Message Date
b3c00d388d
Merge branch 'master' into production 2022-04-24 17:17:22 -03:00
3e137e23d1
chore: update composer and npm 2022-04-24 17:16:43 -03:00
6cc01707c1
chore: update vagrant scripts 2022-04-24 16:04:29 -03:00
740c66cd52 Merge branch 'master' into production 2022-02-24 00:17:56 -03:00
cdda313c7c build: update composer and npm 2022-02-24 00:15:19 -03:00
b5da2f5fe9 Merge branch 'master' into production 2022-02-24 00:03:02 -03:00
a8201ff2b4 build: update composer and npm 2022-02-24 00:01:00 -03:00
ab117ec74c
Merge branch 'master' into production 2021-10-12 22:39:37 -03:00
72be5c48c0
chore: updating NPM and Composer 2021-10-12 22:38:38 -03:00
b6eeef7e62
Merge branch 'master' into production 2021-06-12 12:09:53 -03:00
c2c031d103
build: update npm packages 2021-06-12 12:08:21 -03:00
4d8b5aba6a
Merge branch 'master' into production 2021-05-29 19:58:24 -03:00
c8127d47ba
fix: item available notification is working
As the other email notification, the Laravel upgrade were not correctly
implemented leading to an unchanged getFromJson to get for the language.
2021-05-29 19:56:41 -03:00
6 changed files with 5795 additions and 16040 deletions

View File

@ -32,7 +32,7 @@ class ItemAvailable extends Mailable
public function build()
{
return $this->subject(
\Lang::getFromJson(
\Lang::get(
':itemname is available!',
['itemname' => $this->item->name]
)

View File

@ -6,10 +6,10 @@
"type": "project",
"require": {
"php": "^7.3.0",
"fideloper/proxy": "^4.0",
"fideloper/proxy": "^4.4",
"laravel/framework": "^8.0",
"laravel/helpers": "^1.4",
"laravel/tinker": "^2.0",
"laravel/tinker": "^2.4.1",
"laravel/ui": "^3.0"
},
"require-dev": {
@ -58,7 +58,10 @@
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true

2139
composer.lock generated

File diff suppressed because it is too large Load Diff

19675
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,6 @@
#!/bin/zsh
builtin cd ~/development/laravelHomestead && /usr/bin/vagrant up && builtin cd -
~/Apps/firefox/firefox-bin http://shareit.test
~/Apps/firefox/firefox-bin https://mailtrap.io/inboxes/455614/messages
export VAGRANT_CWD=/home/bruno/development/Homestead/
vagrant up
#builtin cd ~/development/laravelHomestead && /usr/bin/vagrant up && builtin cd -
#~/Apps/firefox/firefox-bin http://shareit.test
#~/Apps/firefox/firefox-bin https://mailtrap.io/inboxes/455614/messages

View File

@ -1 +1 @@
ssh homestead -t 'cd code/Bruno\ Fontes/shareit; echo; echo -n "Press enter to update Composer..."; read; composer update; echo; echo -n "Press enter to update NPM..."; read; npm update; echo; echo -n "Press enter to exit..."; read'
ssh homestead -t 'cd shareit; php7.3 /usr/local/bin/composer update; npm update; echo; echo -n "Press enter to exit..."; read'