ajust php version in the file composer

This commit is contained in:
root 2025-12-30 11:44:31 +01:00
parent 3b8bba2b57
commit 86050e79c1
51 changed files with 3511 additions and 2007 deletions

0
.editorconfig Normal file → Executable file
View File

8
.env.example Normal file → Executable file
View File

@ -2,7 +2,7 @@ APP_NAME=NotificationService
APP_ENV=local
APP_KEY=vTvX5VndE8wWBIowPqRJLeHg9Zrn5xtJ
APP_DEBUG=true
APP_URL=http://localhost
APP_URL=https://test.ilink-app.com:8083
APP_TIMEZONE=UTC
LOG_CHANNEL=stack
@ -13,11 +13,11 @@ DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=iLink_notifications
DB_USERNAME=root
DB_PASSWORD=vps@2017GA
DB_PASSWORD=@iLink@2025
MAIL_HOST=mail.ilink-app.com
MAIL_USERNAME=noreply@ilink-app.com
MAIL_PASSWORD=ilink2017GA
MAIL_PASSWORD=ijQa[(V2Xm{F2e9SEso}
MAIL_FROM_ADDRESS=noreply@ilink-app.com
MAIL_FROM_NAME="iLink World"
MAIL_ENCRYPTION=tls
@ -32,5 +32,5 @@ ONESIGNAL_REST_API_KEY=OWU0NTRhNzItMjAzNy00YTc4LTlhMDUtYTU4MmNlNGZmMmU3
ONESIGNAL_USER_AUTH_KEY=
ONESIGNAL_APP_ID=e8e7251f-713d-4658-9510-86d877fa6a7c
WALLET_SERVICE_BASE_URL =https://ilink-app.com
WALLET_SERVICE_BASE_URL =https://test.ilink-app.com:8081
WALLET_SERVICE_KEY=yhSTSSqIO1uSE1icu09edPOeSFGxIDjo

0
.gitignore vendored Normal file → Executable file
View File

0
.styleci.yml Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
app/Console/Commands/.gitkeep Normal file → Executable file
View File

0
app/Console/Kernel.php Normal file → Executable file
View File

0
app/Events/Event.php Normal file → Executable file
View File

0
app/Events/ExampleEvent.php Normal file → Executable file
View File

0
app/Exceptions/Handler.php Normal file → Executable file
View File

0
app/Http/Controllers/Controller.php Normal file → Executable file
View File

0
app/Http/Controllers/ExampleController.php Normal file → Executable file
View File

0
app/Http/Controllers/MailController.php Normal file → Executable file
View File

0
app/Http/Controllers/NotificationController.php Normal file → Executable file
View File

0
app/Http/Controllers/OneSignalController.php Normal file → Executable file
View File

0
app/Http/Middleware/Authenticate.php Normal file → Executable file
View File

0
app/Http/Middleware/ExampleMiddleware.php Normal file → Executable file
View File

0
app/Jobs/ExampleJob.php Normal file → Executable file
View File

0
app/Jobs/Job.php Normal file → Executable file
View File

0
app/Listeners/ExampleListener.php Normal file → Executable file
View File

0
app/Models/Notification.php Normal file → Executable file
View File

0
app/Models/OnesignalAgent.php Normal file → Executable file
View File

0
app/Models/OnesignalUser.php Normal file → Executable file
View File

0
app/Providers/AppServiceProvider.php Normal file → Executable file
View File

0
app/Providers/AuthServiceProvider.php Normal file → Executable file
View File

0
app/Providers/EventServiceProvider.php Normal file → Executable file
View File

0
app/Traits/Helper.php Normal file → Executable file
View File

0
app/User.php Normal file → Executable file
View File

0
app/helpers/helpers.php Normal file → Executable file
View File

0
bootstrap/app.php Normal file → Executable file
View File

10
composer.json Normal file → Executable file
View File

@ -5,16 +5,16 @@
"license": "MIT",
"type": "project",
"require": {
"php": "^7.2.5",
"php": "^8.0",
"berkayk/onesignal-laravel": "^1.0",
"illuminate/mail": "^7.22",
"laravel/lumen-framework": "^7.0",
"illuminate/mail": "^8.0",
"laravel/lumen-framework": "^8.0",
"ext-json": "*"
},
"require-dev": {
"fzaninotto/faker": "^1.9.1",
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^8.5"
"phpunit/phpunit": "^9.3"
},
"autoload": {
"classmap": [

5494
composer.lock generated Normal file → Executable file

File diff suppressed because it is too large Load Diff

0
config/mail.php Normal file → Executable file
View File

0
config/onesignal.php Normal file → Executable file
View File

0
database/factories/ModelFactory.php Normal file → Executable file
View File

0
database/migrations/.gitkeep Normal file → Executable file
View File

0
database/seeds/DatabaseSeeder.php Normal file → Executable file
View File

0
phpunit.xml Normal file → Executable file
View File

0
public/.htaccess Normal file → Executable file
View File

0
public/index.php Normal file → Executable file
View File

0
resources/lang/en/validation.php Normal file → Executable file
View File

0
resources/lang/fr/validation.php Normal file → Executable file
View File

0
resources/views/.gitkeep Normal file → Executable file
View File

6
routes/web.php Normal file → Executable file
View File

@ -12,9 +12,9 @@
*/
//$router->get('/', function () use ($router) {
// return $router->app->version();
//});
$router->get('/', function () use ($router) {
return $router->app->version();
});
$router->post('send-mail', 'MailController@send');

0
storage/app/.gitignore vendored Normal file → Executable file
View File

0
storage/framework/cache/.gitignore vendored Normal file → Executable file
View File

0
storage/framework/cache/data/.gitignore vendored Normal file → Executable file
View File

0
storage/framework/views/.gitignore vendored Normal file → Executable file
View File

0
storage/logs/.gitignore vendored Normal file → Executable file
View File

0
tests/ExampleTest.php Normal file → Executable file
View File

0
tests/TestCase.php Normal file → Executable file
View File