Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aimeos/aimeos-laravel
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: volodimir-nechai/aimeos-laravel
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 9 commits
  • 541 files changed
  • 1 contributor

Commits on Oct 25, 2023

  1. Emoji aimeos test store

    useername committed Oct 25, 2023
    Copy the full SHA
    d6e3547 View commit details
  2. Fix composer.json

    useername committed Oct 25, 2023
    Copy the full SHA
    1a121cd View commit details
  3. Change Readme.md

    useername committed Oct 25, 2023
    Copy the full SHA
    f3852e5 View commit details
  4. Fix issue with bootstrap

    useername committed Oct 25, 2023
    Copy the full SHA
    b213231 View commit details
  5. Copy the full SHA
    15f7947 View commit details
  6. Copy the full SHA
    5a98bb1 View commit details
  7. Copy the full SHA
    322a7cc View commit details

Commits on Oct 26, 2023

  1. Copy the full SHA
    7e9bfc5 View commit details
  2. Fix package setup issue

    useername committed Oct 26, 2023
    Copy the full SHA
    7afdebd View commit details
Showing 541 changed files with 46,634 additions and 474 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

[*.{yml,yaml}]
indent_size = 2

[docker-compose.yml]
indent_size = 4
51 changes: 51 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
APP_NAME=Aimeos
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_VERSION=1
APP_URL=http://localhost:8000
#ASSET_URL=http://localhost:8000

SHOP_MULTILOCALE=false
SHOP_MULTISHOP=false
SHOP_REGISTRATION=false
SHOP_PERMISSION=admin

LOG_CHANNEL=stack

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=

BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null

AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=

PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1

MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -4,3 +4,5 @@ composer.lock
.phpunit.cache
.idea/
node_modules
/.env
/public/vendor/
12 changes: 12 additions & 0 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
php:
preset: laravel
disabled:
- no_unused_imports
finder:
not-name:
- index.php
js:
finder:
not-name:
- webpack.mix.js
css: true
Loading