Skip to content

Commit

Permalink
Upgrade composer packages (#6)
Browse files Browse the repository at this point in the history
* Create laravel.yml

* Fix test

* Fix test

* Fix test

* Create dependabot.yml

* Bump intervention/image from 3.7.1 to 3.7.2

Bumps [intervention/image](https://github.com/Intervention/image) from 3.7.1 to 3.7.2.
- [Release notes](https://github.com/Intervention/image/releases)
- [Commits](Intervention/image@3.7.1...3.7.2)

---
updated-dependencies:
- dependency-name: intervention/image
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump sass-loader from 12.6.0 to 14.2.1

Bumps [sass-loader](https://github.com/webpack-contrib/sass-loader) from 12.6.0 to 14.2.1.
- [Release notes](https://github.com/webpack-contrib/sass-loader/releases)
- [Changelog](https://github.com/webpack-contrib/sass-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/sass-loader@v12.6.0...v14.2.1)

---
updated-dependencies:
- dependency-name: sass-loader
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump phpunit/phpunit from 11.2.6 to 11.2.7

Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 11.2.6 to 11.2.7.
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/11.2.7/ChangeLog-11.2.md)
- [Commits](sebastianbergmann/phpunit@11.2.6...11.2.7)

---
updated-dependencies:
- dependency-name: phpunit/phpunit
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump laravel/framework from 11.14.0 to 11.15.0

Bumps [laravel/framework](https://github.com/laravel/framework) from 11.14.0 to 11.15.0.
- [Release notes](https://github.com/laravel/framework/releases)
- [Changelog](https://github.com/laravel/framework/blob/11.x/CHANGELOG.md)
- [Commits](laravel/framework@v11.14.0...v11.15.0)

---
updated-dependencies:
- dependency-name: laravel/framework
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump codemirror from 5.65.16 to 6.0.1

Bumps [codemirror](https://github.com/codemirror/basic-setup) from 5.65.16 to 6.0.1.
- [Changelog](https://github.com/codemirror/basic-setup/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codemirror/basic-setup/commits/6.0.1)

---
updated-dependencies:
- dependency-name: codemirror
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump laravel/pint from 1.16.1 to 1.16.2

Bumps [laravel/pint](https://github.com/laravel/pint) from 1.16.1 to 1.16.2.
- [Release notes](https://github.com/laravel/pint/releases)
- [Changelog](https://github.com/laravel/pint/blob/main/CHANGELOG.md)
- [Commits](laravel/pint@v1.16.1...v1.16.2)

---
updated-dependencies:
- dependency-name: laravel/pint
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump laravel/octane from 2.5.1 to 2.5.2

Bumps [laravel/octane](https://github.com/laravel/octane) from 2.5.1 to 2.5.2.
- [Release notes](https://github.com/laravel/octane/releases)
- [Changelog](https://github.com/laravel/octane/blob/2.x/CHANGELOG.md)
- [Commits](laravel/octane@v2.5.1...v2.5.2)

---
updated-dependencies:
- dependency-name: laravel/octane
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Add Spanish language

* Add Spanish language

* Add Spanish language

* Add Spanish language

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
NeftaliYagua and dependabot[bot] authored Jul 15, 2024
1 parent 59dfa99 commit dd52e6e
Show file tree
Hide file tree
Showing 35 changed files with 794 additions and 59 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "composer" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
35 changes: 35 additions & 0 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Laravel

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
laravel-tests:

runs-on: ubuntu-latest

steps:
- uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- uses: actions/checkout@v4
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Generate key
run: php artisan key:generate
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Execute tests (Unit and Feature tests) via PHPUnit/Pest
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: php artisan test
104 changes: 52 additions & 52 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions innopacks/front/lang/es/account.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php
/**
* Copyright (c) Since 2024 InnoShop - All Rights Reserved
*
* @link https://www.innoshop.com
* @author InnoShop <[email protected]>
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/

return [
'register' => 'Iniciar sesión',
'login' => 'Iniciar sesión',
'account' => 'Cuenta',
'orders' => 'Pedidos',
'order_returns' => 'Devoluciones',
'favorites' => 'Favoritos',
'addresses' => 'Direcciones',
'edit' => 'Editar perfil',
'password' => 'Contraseña',
'logout' => 'Cerrar sesión',
'hello' => 'Hola',
'view_all' => 'Ver todo',
'no_order' => '<span class="text-decoration-underline">Haga su primer pedido</span> <span>Aún no ha realizado ningún pedido. </span>',
];
15 changes: 15 additions & 0 deletions innopacks/front/lang/es/address.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php
/**
* Copyright (c) Since 2024 InnoShop - All Rights Reserved
*
* @link https://www.innoshop.com
* @author InnoShop <[email protected]>
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/

return [
'address' => 'Dirección',
'add_new_address' => 'Añadir nueva dirección',
'shipping_address' => 'Dirección de envío',
'billing_address' => 'Dirección de facturación',
];
12 changes: 12 additions & 0 deletions innopacks/front/lang/es/article.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
/**
* Copyright (c) Since 2024 InnoShop - All Rights Reserved
*
* @link https://www.innoshop.com
* @author InnoShop <[email protected]>
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/

return [
'articles' => 'Artículos',
];
12 changes: 12 additions & 0 deletions innopacks/front/lang/es/base.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
/**
* Copyright (c) Since 2024 InnoShop - All Rights Reserved
*
* @link https://www.innoshop.com
* @author InnoShop <[email protected]>
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/

return [
'name' => 'Español',
];
23 changes: 23 additions & 0 deletions innopacks/front/lang/es/cart.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php
/**
* Copyright (c) Since 2024 InnoShop - All Rights Reserved
*
* @link https://www.innoshop.com
* @author InnoShop <[email protected]>
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/

return [
'cart' => 'Carrito',
'product' => 'Producto',
'price' => 'Precio',
'quantity' => 'Cantidad',
'subtotal' => 'Subtotal',
'cart_total' => 'Totales del carrito',
'selected' => 'Seleccionado',
'total' => 'Total',
'go_checkout' => 'Pagar',
'empty_cart' => 'Tu carrito está vacío',
'continue' => 'Seguir comprando',
'add_to_cart' => 'Añadir al carrito',
];
Loading

0 comments on commit dd52e6e

Please sign in to comment.