Skip to content

Commit b213231

Browse files
committed
Fix issue with bootstrap
1 parent f3852e5 commit b213231

File tree

138 files changed

+6220
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+6220
-1
lines changed

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{yml,yaml}]
15+
indent_size = 2
16+
17+
[docker-compose.yml]
18+
indent_size = 4

.env.example

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
APP_NAME=Aimeos
2+
APP_ENV=local
3+
APP_KEY=
4+
APP_DEBUG=true
5+
APP_VERSION=1
6+
APP_URL=http://localhost:8000
7+
#ASSET_URL=http://localhost:8000
8+
9+
SHOP_MULTILOCALE=false
10+
SHOP_MULTISHOP=false
11+
SHOP_REGISTRATION=false
12+
SHOP_PERMISSION=admin
13+
14+
LOG_CHANNEL=stack
15+
16+
DB_CONNECTION=mysql
17+
DB_HOST=127.0.0.1
18+
DB_PORT=3306
19+
DB_DATABASE=laravel
20+
DB_USERNAME=root
21+
DB_PASSWORD=
22+
23+
BROADCAST_DRIVER=log
24+
CACHE_DRIVER=file
25+
QUEUE_CONNECTION=sync
26+
SESSION_DRIVER=file
27+
SESSION_LIFETIME=120
28+
29+
REDIS_HOST=127.0.0.1
30+
REDIS_PASSWORD=null
31+
REDIS_PORT=6379
32+
33+
MAIL_MAILER=smtp
34+
MAIL_HOST=smtp.mailtrap.io
35+
MAIL_PORT=2525
36+
MAIL_USERNAME=null
37+
MAIL_PASSWORD=null
38+
MAIL_ENCRYPTION=null
39+
40+
AWS_ACCESS_KEY_ID=
41+
AWS_SECRET_ACCESS_KEY=
42+
AWS_DEFAULT_REGION=us-east-1
43+
AWS_BUCKET=
44+
45+
PUSHER_APP_ID=
46+
PUSHER_APP_KEY=
47+
PUSHER_APP_SECRET=
48+
PUSHER_APP_CLUSTER=mt1
49+
50+
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
51+
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

.styleci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
php:
2+
preset: laravel
3+
disabled:
4+
- no_unused_imports
5+
finder:
6+
not-name:
7+
- index.php
8+
js:
9+
finder:
10+
not-name:
11+
- webpack.mix.js
12+
css: true

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ This repository contains module to add Emoji functionality to <a href='https://g
22

33

44
To install this project please clone repository to your local machine and run this command
5+
56
```
6-
composer.phar req aimeos-extensions/emoji
7+
composer.phar update
8+
composer req aimeos-extensions/emoji
79
```
810
and then
911
```

SECURITY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Reporting a Vulnerability
2+
3+
If you think you found a security issue, please use the [Aimeos contact from](https://aimeos.org/contact#c198) and describe how the problem can be reproduced.

artisan

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#!/usr/bin/env php
2+
<?php
3+
4+
define('LARAVEL_START', microtime(true));
5+
6+
/*
7+
|--------------------------------------------------------------------------
8+
| Register The Auto Loader
9+
|--------------------------------------------------------------------------
10+
|
11+
| Composer provides a convenient, automatically generated class loader
12+
| for our application. We just need to utilize it! We'll require it
13+
| into the script here so that we do not have to worry about the
14+
| loading of any of our classes manually. It's great to relax.
15+
|
16+
*/
17+
18+
require __DIR__.'/vendor/autoload.php';
19+
20+
$app = require_once __DIR__.'/bootstrap/app.php';
21+
22+
/*
23+
|--------------------------------------------------------------------------
24+
| Run The Artisan Application
25+
|--------------------------------------------------------------------------
26+
|
27+
| When we run the console application, the current CLI command will be
28+
| executed in this console and the response sent back to a terminal
29+
| or another output device for the developers. Here goes nothing!
30+
|
31+
*/
32+
33+
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
34+
35+
$status = $kernel->handle(
36+
$input = new Symfony\Component\Console\Input\ArgvInput,
37+
new Symfony\Component\Console\Output\ConsoleOutput
38+
);
39+
40+
/*
41+
|--------------------------------------------------------------------------
42+
| Shutdown The Application
43+
|--------------------------------------------------------------------------
44+
|
45+
| Once Artisan has finished running, we will fire off the shutdown events
46+
| so that any final work may be done by the application before we shut
47+
| down the process. This is the last thing to happen to the request.
48+
|
49+
*/
50+
51+
$kernel->terminate($input, $status);
52+
53+
exit($status);

bootstrap/app.php

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<?php
2+
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Create The Application
6+
|--------------------------------------------------------------------------
7+
|
8+
| The first thing we will do is create a new Laravel application instance
9+
| which serves as the "glue" for all the components of Laravel, and is
10+
| the IoC container for the system binding all of the various parts.
11+
|
12+
*/
13+
14+
$app = new Illuminate\Foundation\Application(
15+
$_ENV['APP_BASE_PATH'] ?? dirname(__DIR__)
16+
);
17+
18+
/*
19+
|--------------------------------------------------------------------------
20+
| Bind Important Interfaces
21+
|--------------------------------------------------------------------------
22+
|
23+
| Next, we need to bind some important interfaces into the container so
24+
| we will be able to resolve them when needed. The kernels serve the
25+
| incoming requests to this application from both the web and CLI.
26+
|
27+
*/
28+
29+
$app->singleton(
30+
Illuminate\Contracts\Http\Kernel::class,
31+
App\Http\Kernel::class
32+
);
33+
34+
$app->singleton(
35+
Illuminate\Contracts\Console\Kernel::class,
36+
App\Console\Kernel::class
37+
);
38+
39+
$app->singleton(
40+
Illuminate\Contracts\Debug\ExceptionHandler::class,
41+
App\Exceptions\Handler::class
42+
);
43+
44+
/*
45+
|--------------------------------------------------------------------------
46+
| Return The Application
47+
|--------------------------------------------------------------------------
48+
|
49+
| This script returns the application instance. The instance is given to
50+
| the calling script so we can separate the building of the instances
51+
| from the actual running of the application and sending responses.
52+
|
53+
*/
54+
55+
return $app;

bootstrap/cache/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"require": {
1515
"php": "^8.1",
1616
"composer-runtime-api": "^2.2",
17+
"aimeos-extensions/emoji": "*",
1718
"aimeos/aimeos-laravel": "^2023.10",
1819
"guzzlehttp/guzzle": "^7.2",
1920
"laravel/breeze": "^1.18",

composer.phar

2.73 MB
Binary file not shown.

0 commit comments

Comments
 (0)