From fdd2676f755639186415041b87e5b9b060c3366c Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 30 Jun 2025 10:24:17 +0700 Subject: [PATCH] commit --- .editorconfig | 18 + .env.example | 58 + .gitattributes | 11 + .gitignore | 18 + README.md | 66 + app/Console/Kernel.php | 27 + app/Exceptions/Handler.php | 48 + .../Admin/AlternatifController.php | 59 + app/Http/Controllers/AlternatifController.php | 150 + app/Http/Controllers/AuthController.php | 106 + .../Controllers/Author/PostController.php | 66 + app/Http/Controllers/AuthorController.php | 13 + .../Controllers/BobotKriteriaController.php | 94 + app/Http/Controllers/Controller.php | 12 + .../Controllers/DataCategoryController.php | 87 + app/Http/Controllers/DataUserController.php | 59 + .../Controllers/ForgotPasswordController.php | 115 + app/Http/Controllers/KriteriaController.php | 79 + app/Http/Controllers/LoginController.php | 18 + app/Http/Controllers/PenilaianController.php | 182 + .../Controllers/PostApprovalController.php | 56 + app/Http/Controllers/PostController.php | 12 + .../Controllers/RekomendasiController.php | 160 + app/Http/Controllers/UserController.php | 65 + app/Http/Controllers/YourController.php | 21 + app/Http/Kernel.php | 82 + app/Http/Middleware/AdminMiddleware.php | 28 + app/Http/Middleware/Authenticate.php | 17 + app/Http/Middleware/EncryptCookies.php | 17 + .../PreventRequestsDuringMaintenance.php | 17 + .../Middleware/RedirectIfAuthenticated.php | 34 + app/Http/Middleware/RoleMiddleware.php | 39 + app/Http/Middleware/TrimStrings.php | 19 + app/Http/Middleware/TrustHosts.php | 20 + app/Http/Middleware/TrustProxies.php | 28 + app/Http/Middleware/ValidateSignature.php | 22 + app/Http/Middleware/VerifyCsrfToken.php | 17 + app/Http/Requests/PostRequest.php | 42 + app/Mail/ResetPasswordMail.php | 55 + app/Models/Alternatif.php | 20 + app/Models/Alternative.php | 21 + app/Models/Blog.php | 19 + app/Models/BobotKriteria.php | 16 + app/Models/Category.php | 19 + app/Models/Kriteria.php | 27 + app/Models/PasswordResetTokenModel.php | 18 + app/Models/Penilaian.php | 29 + app/Models/Post.php | 31 + app/Models/PostCategory.php | 24 + app/Models/User.php | 61 + .../ResetPasswordNotification.php | 56 + app/Providers/AppServiceProvider.php | 24 + app/Providers/AuthServiceProvider.php | 28 + app/Providers/BroadcastServiceProvider.php | 19 + app/Providers/EventServiceProvider.php | 38 + app/Providers/RouteServiceProvider.php | 48 + artisan | 53 + bootstrap/app.php | 55 + bootstrap/cache/.gitignore | 2 + composer.json | 69 + composer.lock | 8293 ++++++++++++ config/app.php | 215 + config/auth.php | 115 + config/broadcasting.php | 70 + config/cache.php | 110 + config/cors.php | 34 + config/database.php | 151 + config/filesystems.php | 76 + config/hashing.php | 52 + config/logging.php | 122 + config/mail.php | 124 + config/queue.php | 93 + config/sanctum.php | 67 + config/services.php | 34 + config/session.php | 201 + config/view.php | 36 + database/.gitignore | 1 + database/factories/UserFactory.php | 40 + .../2014_10_12_000000_create_users_table.php | 35 + ...000_create_password_reset_tokens_table.php | 28 + ..._08_19_000000_create_failed_jobs_table.php | 32 + ...01_create_personal_access_tokens_table.php | 33 + ...10_01_123456_create_alternatives_table.php | 26 + ...4_08_17_072508_create_categories_table.php | 28 + .../2024_08_21_185754_create_posts_table.php | 39 + ...21_190359_create_post_categories_table.php | 35 + ...25_05_07_042012_create_kriterias_table.php | 30 + ...5_05_07_045550_create_penilaians_table.php | 27 + ...07_051623_create_hasil_penilaian_table.php | 26 + ...133611_add_columns_to_penilaians_table.php | 30 + database/seeders/AlternativeSeeder.php | 49 + database/seeders/BlogSeeder.php | 35 + database/seeders/CategorySeeder.php | 28 + database/seeders/DatabaseSeeder.php | 13 + database/seeders/KriteriasTableSeeder.php | 43 + database/seeders/UserSeeder.php | 30 + package.json | 12 + phpunit.xml | 31 + public/.htaccess | 21 + public/asset/css/cs-skin-elastic.css | 290 + public/asset/css/lib/chosen/chosen-sprite.png | Bin 0 -> 538 bytes .../asset/css/lib/chosen/chosen-sprite@2x.png | Bin 0 -> 738 bytes public/asset/css/lib/chosen/chosen.css | 490 + public/asset/css/lib/chosen/chosen.min.css | 11 + .../lib/datatable/buttons.bootstrap.min.css | 1 + .../lib/datatable/buttons.dataTables.min.css | 1 + .../datatable/dataTables.bootstrap.min.css | 1 + .../asset/css/lib/vector-map/jqvmap.min.css | 45 + public/asset/css/style.css | 2506 ++++ public/asset/css/style.css.map | 7 + public/asset/fonts/icomoon/icomoon.eot | Bin 0 -> 5036 bytes public/asset/fonts/icomoon/icomoon.svg | 30 + public/asset/fonts/icomoon/icomoon.ttf | Bin 0 -> 4872 bytes public/asset/fonts/icomoon/icomoon.woff | Bin 0 -> 3492 bytes public/asset/fonts/icomoon/index.html | 0 public/asset/js/dashboard.js | 514 + public/asset/js/init/chartjs-init.js | 418 + public/asset/js/init/datatables-init.js | 53 + public/asset/js/init/flot-chart-init.js | 379 + public/asset/js/init/fullcalendar-init.js | 193 + public/asset/js/init/gmap-init.js | 246 + public/asset/js/init/peitychart-init.js | 100 + public/asset/js/init/vector-init.js | 223 + public/asset/js/init/weather-init.js | 140 + public/asset/js/lib/chosen/chosen.jquery.js | 1349 ++ .../asset/js/lib/chosen/chosen.jquery.min.js | 3 + public/asset/js/lib/chosen/chosen.proto.js | 1389 ++ .../asset/js/lib/chosen/chosen.proto.min.js | 3 + .../lib/data-table/buttons.bootstrap.min.js | 1 + .../js/lib/data-table/buttons.colVis.min.js | 5 + .../js/lib/data-table/buttons.flash.min.js | 30 + .../js/lib/data-table/buttons.html5.min.js | 25 + .../js/lib/data-table/buttons.print.min.js | 4 + .../data-table/dataTables.bootstrap.min.js | 8 + .../lib/data-table/dataTables.buttons.min.js | 35 + .../asset/js/lib/data-table/datatables.min.js | 204 + .../asset/js/lib/data-table/jquery-1.12.4.js | 11008 ++++++++++++++++ .../lib/data-table/jquery.dataTables.min.js | 167 + public/asset/js/lib/data-table/jszip.min.js | 14 + public/asset/js/lib/data-table/pdfmake.min.js | 22 + public/asset/js/lib/data-table/vfs_fonts.js | 1 + public/asset/js/lib/gmap/gmapApi.js | 134 + public/asset/js/lib/gmap/gmaps.js | 2417 ++++ public/asset/js/lib/gmap/gmaps.min.js | 2 + public/asset/js/main.js | 90 + public/asset/js/vmap.sampledata.js | 1 + public/asset/js/widgets.js | 69 + public/asset/scss/style.css | 2511 ++++ public/asset/scss/style.css.map | 7 + public/asset/scss/style.scss | 2768 ++++ public/favicon.ico | 0 public/index.php | 55 + public/robots.txt | 2 + resources/css/app.css | 0 resources/js/app.js | 1 + resources/js/bootstrap.js | 32 + .../views/admin/alternatif/index.blade.php | 120 + .../views/admin/dashboard-admin.blade.php | 435 + .../views/admin/kriteria/index.blade.php | 319 + .../views/admin/penilaian/index.blade.php | 179 + .../views/auth/forgot-password.blade.php | 121 + resources/views/auth/login.blade.php | 163 + .../views/auth/mail-reset-password.blade.php | 21 + resources/views/auth/register.blade.php | 144 + .../views/auth/validation-token.blade.php | 109 + resources/views/author/alternatif.blade.php | 73 + .../views/author/bobot-kriteria.blade.php | 59 + .../views/author/dashboard-author.blade.php | 543 + resources/views/landing.blade.php | 305 + resources/views/layout/app.blade.php | 699 + resources/views/layout/footer.blade.php | 0 resources/views/layout/header.blade.php | 111 + resources/views/layout/sidebar.blade.php | 367 + resources/views/layouts/app.blade.php | 19 + resources/views/masterData/blog.blade.php | 0 .../views/masterData/data-category.blade.php | 157 + .../views/masterData/data-user.blade.php | 264 + resources/views/masterData/post.blade.php | 140 + resources/views/penilaian/hasil.blade.php | 81 + .../views/user/alternatif/index.blade.php | 71 + .../views/user/input-data/index.blade.php | 51 + resources/views/user/kriteria/index.blade.php | 1 + resources/views/user/profile/index.blade.php | 87 + .../views/user/rekomendasi/index.blade.php | 156 + routes/api.php | 19 + routes/channels.php | 18 + routes/console.php | 19 + routes/web.php | 189 + storage/app/.gitignore | 3 + storage/app/public/.gitignore | 2 + storage/framework/.gitignore | 9 + storage/framework/cache/.gitignore | 3 + storage/framework/cache/data/.gitignore | 2 + storage/framework/sessions/.gitignore | 2 + storage/framework/testing/.gitignore | 2 + storage/framework/views/.gitignore | 2 + storage/logs/.gitignore | 2 + tests/CreatesApplication.php | 21 + tests/Feature/ExampleTest.php | 19 + tests/TestCase.php | 10 + tests/Unit/ExampleTest.php | 16 + vite.config.js | 11 + 202 files changed, 46328 insertions(+) create mode 100644 .editorconfig create mode 100644 .env.example create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 README.md create mode 100644 app/Console/Kernel.php create mode 100644 app/Exceptions/Handler.php create mode 100644 app/Http/Controllers/Admin/AlternatifController.php create mode 100644 app/Http/Controllers/AlternatifController.php create mode 100644 app/Http/Controllers/AuthController.php create mode 100644 app/Http/Controllers/Author/PostController.php create mode 100644 app/Http/Controllers/AuthorController.php create mode 100644 app/Http/Controllers/BobotKriteriaController.php create mode 100644 app/Http/Controllers/Controller.php create mode 100644 app/Http/Controllers/DataCategoryController.php create mode 100644 app/Http/Controllers/DataUserController.php create mode 100644 app/Http/Controllers/ForgotPasswordController.php create mode 100644 app/Http/Controllers/KriteriaController.php create mode 100644 app/Http/Controllers/LoginController.php create mode 100644 app/Http/Controllers/PenilaianController.php create mode 100644 app/Http/Controllers/PostApprovalController.php create mode 100644 app/Http/Controllers/PostController.php create mode 100644 app/Http/Controllers/RekomendasiController.php create mode 100644 app/Http/Controllers/UserController.php create mode 100644 app/Http/Controllers/YourController.php create mode 100644 app/Http/Kernel.php create mode 100644 app/Http/Middleware/AdminMiddleware.php create mode 100644 app/Http/Middleware/Authenticate.php create mode 100644 app/Http/Middleware/EncryptCookies.php create mode 100644 app/Http/Middleware/PreventRequestsDuringMaintenance.php create mode 100644 app/Http/Middleware/RedirectIfAuthenticated.php create mode 100644 app/Http/Middleware/RoleMiddleware.php create mode 100644 app/Http/Middleware/TrimStrings.php create mode 100644 app/Http/Middleware/TrustHosts.php create mode 100644 app/Http/Middleware/TrustProxies.php create mode 100644 app/Http/Middleware/ValidateSignature.php create mode 100644 app/Http/Middleware/VerifyCsrfToken.php create mode 100644 app/Http/Requests/PostRequest.php create mode 100644 app/Mail/ResetPasswordMail.php create mode 100644 app/Models/Alternatif.php create mode 100644 app/Models/Alternative.php create mode 100644 app/Models/Blog.php create mode 100644 app/Models/BobotKriteria.php create mode 100644 app/Models/Category.php create mode 100644 app/Models/Kriteria.php create mode 100644 app/Models/PasswordResetTokenModel.php create mode 100644 app/Models/Penilaian.php create mode 100644 app/Models/Post.php create mode 100644 app/Models/PostCategory.php create mode 100644 app/Models/User.php create mode 100644 app/Notifications/ResetPasswordNotification.php create mode 100644 app/Providers/AppServiceProvider.php create mode 100644 app/Providers/AuthServiceProvider.php create mode 100644 app/Providers/BroadcastServiceProvider.php create mode 100644 app/Providers/EventServiceProvider.php create mode 100644 app/Providers/RouteServiceProvider.php create mode 100644 artisan create mode 100644 bootstrap/app.php create mode 100644 bootstrap/cache/.gitignore create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 config/app.php create mode 100644 config/auth.php create mode 100644 config/broadcasting.php create mode 100644 config/cache.php create mode 100644 config/cors.php create mode 100644 config/database.php create mode 100644 config/filesystems.php create mode 100644 config/hashing.php create mode 100644 config/logging.php create mode 100644 config/mail.php create mode 100644 config/queue.php create mode 100644 config/sanctum.php create mode 100644 config/services.php create mode 100644 config/session.php create mode 100644 config/view.php create mode 100644 database/.gitignore create mode 100644 database/factories/UserFactory.php create mode 100644 database/migrations/2014_10_12_000000_create_users_table.php create mode 100644 database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php create mode 100644 database/migrations/2019_08_19_000000_create_failed_jobs_table.php create mode 100644 database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php create mode 100644 database/migrations/2023_10_01_123456_create_alternatives_table.php create mode 100644 database/migrations/2024_08_17_072508_create_categories_table.php create mode 100644 database/migrations/2024_08_21_185754_create_posts_table.php create mode 100644 database/migrations/2024_08_21_190359_create_post_categories_table.php create mode 100644 database/migrations/2025_05_07_042012_create_kriterias_table.php create mode 100644 database/migrations/2025_05_07_045550_create_penilaians_table.php create mode 100644 database/migrations/2025_05_07_051623_create_hasil_penilaian_table.php create mode 100644 database/migrations/2025_05_07_133611_add_columns_to_penilaians_table.php create mode 100644 database/seeders/AlternativeSeeder.php create mode 100644 database/seeders/BlogSeeder.php create mode 100644 database/seeders/CategorySeeder.php create mode 100644 database/seeders/DatabaseSeeder.php create mode 100644 database/seeders/KriteriasTableSeeder.php create mode 100644 database/seeders/UserSeeder.php create mode 100644 package.json create mode 100644 phpunit.xml create mode 100644 public/.htaccess create mode 100644 public/asset/css/cs-skin-elastic.css create mode 100644 public/asset/css/lib/chosen/chosen-sprite.png create mode 100644 public/asset/css/lib/chosen/chosen-sprite@2x.png create mode 100644 public/asset/css/lib/chosen/chosen.css create mode 100644 public/asset/css/lib/chosen/chosen.min.css create mode 100644 public/asset/css/lib/datatable/buttons.bootstrap.min.css create mode 100644 public/asset/css/lib/datatable/buttons.dataTables.min.css create mode 100644 public/asset/css/lib/datatable/dataTables.bootstrap.min.css create mode 100644 public/asset/css/lib/vector-map/jqvmap.min.css create mode 100644 public/asset/css/style.css create mode 100644 public/asset/css/style.css.map create mode 100644 public/asset/fonts/icomoon/icomoon.eot create mode 100644 public/asset/fonts/icomoon/icomoon.svg create mode 100644 public/asset/fonts/icomoon/icomoon.ttf create mode 100644 public/asset/fonts/icomoon/icomoon.woff create mode 100644 public/asset/fonts/icomoon/index.html create mode 100644 public/asset/js/dashboard.js create mode 100644 public/asset/js/init/chartjs-init.js create mode 100644 public/asset/js/init/datatables-init.js create mode 100644 public/asset/js/init/flot-chart-init.js create mode 100644 public/asset/js/init/fullcalendar-init.js create mode 100644 public/asset/js/init/gmap-init.js create mode 100644 public/asset/js/init/peitychart-init.js create mode 100644 public/asset/js/init/vector-init.js create mode 100644 public/asset/js/init/weather-init.js create mode 100644 public/asset/js/lib/chosen/chosen.jquery.js create mode 100644 public/asset/js/lib/chosen/chosen.jquery.min.js create mode 100644 public/asset/js/lib/chosen/chosen.proto.js create mode 100644 public/asset/js/lib/chosen/chosen.proto.min.js create mode 100644 public/asset/js/lib/data-table/buttons.bootstrap.min.js create mode 100644 public/asset/js/lib/data-table/buttons.colVis.min.js create mode 100644 public/asset/js/lib/data-table/buttons.flash.min.js create mode 100644 public/asset/js/lib/data-table/buttons.html5.min.js create mode 100644 public/asset/js/lib/data-table/buttons.print.min.js create mode 100644 public/asset/js/lib/data-table/dataTables.bootstrap.min.js create mode 100644 public/asset/js/lib/data-table/dataTables.buttons.min.js create mode 100644 public/asset/js/lib/data-table/datatables.min.js create mode 100644 public/asset/js/lib/data-table/jquery-1.12.4.js create mode 100644 public/asset/js/lib/data-table/jquery.dataTables.min.js create mode 100644 public/asset/js/lib/data-table/jszip.min.js create mode 100644 public/asset/js/lib/data-table/pdfmake.min.js create mode 100644 public/asset/js/lib/data-table/vfs_fonts.js create mode 100644 public/asset/js/lib/gmap/gmapApi.js create mode 100644 public/asset/js/lib/gmap/gmaps.js create mode 100644 public/asset/js/lib/gmap/gmaps.min.js create mode 100644 public/asset/js/main.js create mode 100644 public/asset/js/vmap.sampledata.js create mode 100644 public/asset/js/widgets.js create mode 100644 public/asset/scss/style.css create mode 100644 public/asset/scss/style.css.map create mode 100644 public/asset/scss/style.scss create mode 100644 public/favicon.ico create mode 100644 public/index.php create mode 100644 public/robots.txt create mode 100644 resources/css/app.css create mode 100644 resources/js/app.js create mode 100644 resources/js/bootstrap.js create mode 100644 resources/views/admin/alternatif/index.blade.php create mode 100644 resources/views/admin/dashboard-admin.blade.php create mode 100644 resources/views/admin/kriteria/index.blade.php create mode 100644 resources/views/admin/penilaian/index.blade.php create mode 100644 resources/views/auth/forgot-password.blade.php create mode 100644 resources/views/auth/login.blade.php create mode 100644 resources/views/auth/mail-reset-password.blade.php create mode 100644 resources/views/auth/register.blade.php create mode 100644 resources/views/auth/validation-token.blade.php create mode 100644 resources/views/author/alternatif.blade.php create mode 100644 resources/views/author/bobot-kriteria.blade.php create mode 100644 resources/views/author/dashboard-author.blade.php create mode 100644 resources/views/landing.blade.php create mode 100644 resources/views/layout/app.blade.php create mode 100644 resources/views/layout/footer.blade.php create mode 100644 resources/views/layout/header.blade.php create mode 100644 resources/views/layout/sidebar.blade.php create mode 100644 resources/views/layouts/app.blade.php create mode 100644 resources/views/masterData/blog.blade.php create mode 100644 resources/views/masterData/data-category.blade.php create mode 100644 resources/views/masterData/data-user.blade.php create mode 100644 resources/views/masterData/post.blade.php create mode 100644 resources/views/penilaian/hasil.blade.php create mode 100644 resources/views/user/alternatif/index.blade.php create mode 100644 resources/views/user/input-data/index.blade.php create mode 100644 resources/views/user/kriteria/index.blade.php create mode 100644 resources/views/user/profile/index.blade.php create mode 100644 resources/views/user/rekomendasi/index.blade.php create mode 100644 routes/api.php create mode 100644 routes/channels.php create mode 100644 routes/console.php create mode 100644 routes/web.php create mode 100644 storage/app/.gitignore create mode 100644 storage/app/public/.gitignore create mode 100644 storage/framework/.gitignore create mode 100644 storage/framework/cache/.gitignore create mode 100644 storage/framework/cache/data/.gitignore create mode 100644 storage/framework/sessions/.gitignore create mode 100644 storage/framework/testing/.gitignore create mode 100644 storage/framework/views/.gitignore create mode 100644 storage/logs/.gitignore create mode 100644 tests/CreatesApplication.php create mode 100644 tests/Feature/ExampleTest.php create mode 100644 tests/TestCase.php create mode 100644 tests/Unit/ExampleTest.php create mode 100644 vite.config.js diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8f0de65 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[docker-compose.yml] +indent_size = 4 diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..478972c --- /dev/null +++ b/.env.example @@ -0,0 +1,58 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=http://localhost + +LOG_CHANNEL=stack +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +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 +FILESYSTEM_DISK=local +QUEUE_CONNECTION=sync +SESSION_DRIVER=file +SESSION_LIFETIME=120 + +MEMCACHED_HOST=127.0.0.1 + +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=smtp +MAIL_HOST=mailpit +MAIL_PORT=1025 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=null +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= +PUSHER_HOST= +PUSHER_PORT=443 +PUSHER_SCHEME=https +PUSHER_APP_CLUSTER=mt1 + +VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}" +VITE_PUSHER_HOST="${PUSHER_HOST}" +VITE_PUSHER_PORT="${PUSHER_PORT}" +VITE_PUSHER_SCHEME="${PUSHER_SCHEME}" +VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fcb21d3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +* text=auto eol=lf + +*.blade.php diff=html +*.css diff=css +*.html diff=html +*.md diff=markdown +*.php diff=php + +/.github export-ignore +CHANGELOG.md export-ignore +.styleci.yml export-ignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e6bbd7a --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +/.phpunit.cache +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/vendor +.env +.env.backup +.env.production +Homestead.json +Homestead.yaml +auth.json +npm-debug.log +yarn-error.log +/.fleet +/.idea +/.vscode diff --git a/README.md b/README.md new file mode 100644 index 0000000..3ed385a --- /dev/null +++ b/README.md @@ -0,0 +1,66 @@ +

Laravel Logo

+ +

+Build Status +Total Downloads +Latest Stable Version +License +

+ +## About Laravel + +Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: + +- [Simple, fast routing engine](https://laravel.com/docs/routing). +- [Powerful dependency injection container](https://laravel.com/docs/container). +- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. +- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). +- Database agnostic [schema migrations](https://laravel.com/docs/migrations). +- [Robust background job processing](https://laravel.com/docs/queues). +- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + +Laravel is accessible, powerful, and provides tools required for large, robust applications. + +## Learning Laravel + +Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. + +You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch. + +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 2000 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. + +## Laravel Sponsors + +We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell). + +### Premium Partners + +- **[Vehikl](https://vehikl.com/)** +- **[Tighten Co.](https://tighten.co)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Cubet Techno Labs](https://cubettech.com)** +- **[Cyber-Duck](https://cyber-duck.co.uk)** +- **[Many](https://www.many.co.uk)** +- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)** +- **[DevSquad](https://devsquad.com)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel/)** +- **[OP.GG](https://op.gg)** +- **[WebReinvent](https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors)** +- **[Lendio](https://lendio.com)** + +## Contributing + +Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). + +## Code of Conduct + +In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). + +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. + +## License + +The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php new file mode 100644 index 0000000..e6b9960 --- /dev/null +++ b/app/Console/Kernel.php @@ -0,0 +1,27 @@ +command('inspire')->hourly(); + } + + /** + * Register the commands for the application. + */ + protected function commands(): void + { + $this->load(__DIR__.'/Commands'); + + require base_path('routes/console.php'); + } +} diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php new file mode 100644 index 0000000..b1c262c --- /dev/null +++ b/app/Exceptions/Handler.php @@ -0,0 +1,48 @@ +, \Psr\Log\LogLevel::*> + */ + protected $levels = [ + // + ]; + + /** + * A list of the exception types that are not reported. + * + * @var array> + */ + protected $dontReport = [ + // + ]; + + /** + * A list of the inputs that are never flashed to the session on validation exceptions. + * + * @var array + */ + protected $dontFlash = [ + 'current_password', + 'password', + 'password_confirmation', + ]; + + /** + * Register the exception handling callbacks for the application. + */ + public function register(): void + { + $this->reportable(function (Throwable $e) { + // + }); + } +} diff --git a/app/Http/Controllers/Admin/AlternatifController.php b/app/Http/Controllers/Admin/AlternatifController.php new file mode 100644 index 0000000..e56c1cf --- /dev/null +++ b/app/Http/Controllers/Admin/AlternatifController.php @@ -0,0 +1,59 @@ +validate([ + 'name' => 'required', + 'jenis' => 'required', + 'bahan_utama' => 'required', + 'harga' => 'required|numeric', + ]); + + Alternative::create($request->all()); + + return redirect()->route('admin.alternatif.index') + ->with('success', 'Alternatif berhasil ditambahkan'); + } + + public function edit(Alternative $alternatif) + { + return view('admin.alternatif.edit', compact('alternatif')); + } + + public function update(Request $request, Alternative $alternatif) + { + $request->validate([ + 'name' => 'required', + 'jenis' => 'required', + 'bahan_utama' => 'required', + 'harga' => 'required|numeric', + ]); + + $alternatif->update($request->all()); + + return redirect()->route('admin.alternatif.index') + ->with('success', 'Alternatif berhasil diperbarui'); + } + + public function destroy(Alternative $alternatif) + { + $alternatif->delete(); + + return redirect()->route('admin.alternatif.index') + ->with('success', 'Alternatif berhasil dihapus'); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/AlternatifController.php b/app/Http/Controllers/AlternatifController.php new file mode 100644 index 0000000..95c90e1 --- /dev/null +++ b/app/Http/Controllers/AlternatifController.php @@ -0,0 +1,150 @@ +validate([ + 'name' => 'required', + 'jenis' => 'required', + 'bahan_utama' => 'required', + 'harga' => 'required|numeric' + ]); + + Alternatif::create($validatedData); + + return redirect()->route('admin.alternatif.index') + ->with('success', 'Data alternatif berhasil ditambahkan'); + } + + public function storeAdmin(Request $request) + { + $validatedData = $request->validate([ + 'name' => 'required', + 'jenis' => 'required', + 'bahan_utama' => 'required', + 'harga' => 'required|numeric' + ]); + + Alternatif::create($validatedData); + + return redirect()->route('alternatif.admin') + ->with('success', 'Data alternatif berhasil ditambahkan'); + } + + public function edit($id) + { + $alternatif = Alternatif::findOrFail($id); + return view('admin.alternatif.edit', compact('alternatif')); + } + + public function update(Request $request, $id) + { + $validatedData = $request->validate([ + 'name' => 'required', + 'jenis' => 'required', + 'bahan_utama' => 'required', + 'harga' => 'required|numeric' + ]); + + $alternatif = Alternatif::findOrFail($id); + $alternatif->update($validatedData); + + return redirect()->route('alternatif.index') + ->with('success', 'Data alternatif berhasil diupdate'); + } + + public function updateAdmin(Request $request, $id) + { + $alternatif = Alternatif::findOrFail($id); + + $validatedData = $request->validate([ + 'nama' => 'required', + 'jenis' => 'required', + 'bahan_utama' => 'required', + 'harga' => 'required|numeric' + ]); + + $alternatif->update($validatedData); + + if($request->ajax()) { + return response()->json(['success' => 'Data berhasil diupdate']); + } + + return redirect()->route('admin.alternatif.index') + ->with('success', 'Data alternatif berhasil diupdate'); + } + + public function destroy($id) + { + try { + $alternatif = Alternatif::findOrFail($id); + $alternatif->delete(); + return redirect()->route('alternatif.index') + ->with('success', 'Data alternatif berhasil dihapus'); + } catch (\Exception $e) { + return redirect()->route('alternatif.index') + ->with('error', 'Gagal menghapus data alternatif'); + } + } + + public function showKriteria() { + $criterias = DB::table('criterias')->get(); + return view('author.bobot-kriteria', compact('criterias')); + } + + public function create() + { + return view('admin.alternatif.create'); + } + + public function admin() + { + $alternatif = Alternatif::all(); + return view('admin.alternatif.index', compact('alternatif')); + } + + public function createAdmin() + { + return view('admin.alternatif.create'); + } + + public function editAdmin($id) + { + $alternatif = Alternatif::findOrFail($id); + return view('admin.alternatif.edit', compact('alternatif')); + } + + public function destroyAdmin($id) + { + $alternatif = Alternatif::findOrFail($id); + $alternatif->delete(); + + return redirect()->route('admin.alternatif.index') + ->with('success', 'Data alternatif berhasil dihapus'); + } + + public function adminIndex() + { + $alternatif = Alternatif::all(); + return view('admin.alternatif.index', compact('alternatif')); + } + + public function showAlternatif() + { + $alternatif = Alternatif::all(); + return view('user.alternatif.index', compact('alternatif')); + } +} diff --git a/app/Http/Controllers/AuthController.php b/app/Http/Controllers/AuthController.php new file mode 100644 index 0000000..63a388b --- /dev/null +++ b/app/Http/Controllers/AuthController.php @@ -0,0 +1,106 @@ +validate([ + 'email' => 'required|email', + 'password' => 'required', + ]); + + // Cek kredensial + if (Auth::attempt($request->only('email', 'password'))) { + // Redirect ke halaman dashboard setelah login + return redirect()->route('author.dashboard-author'); // Ganti dengan rute dashboard Anda + } + + // Jika gagal, kembali ke halaman login dengan pesan error + return back()->withErrors([ + 'email' => 'The provided credentials do not match our records.', + ]); + } + public function adminDashboard() + { + return view("admin.dashboard-admin"); + } + + public function authorDashboard() + { + return view("author.dashboard-author"); + } + + + //Menampilkan halaman register + + public function showRegister() + { + return view('auth.register'); + } + + + public function register(Request $request) + { + // Validasi + $validator = Validator::make($request->all(), [ + 'name' => 'required|string|max:255', + 'email' => 'required|string|email|max:255|unique:users', + 'password' => 'required|string|min:6|confirmed', // menggunakan `confirmed` untuk konfirmasi password + ], [ + 'name.required' => 'Nama wajib diisi', + 'email.required' => 'Email wajib diisi', + 'email.email' => 'Format email tidak valid', + 'email.unique' => 'Email sudah digunakan', + 'password.required' => 'Password wajib diisi', + 'password.min' => 'Password harus memiliki minimal 6 karakter', + 'password.confirmed' => 'Konfirmasi password tidak cocok', + ]); + + if ($validator->fails()) { + return redirect()->back()->withErrors($validator->messages()->all()[0]); + } + + // Simpan data pengguna + $user = new User(); + $user->name = $request->name; + $user->email = $request->email; + $user->password = Hash::make($request->password); + + try { + // dd($request->all()); + $user->save(); + return redirect()->route('login')->with('success', 'Data Berhasil Disimpan!'); + } catch (\Throwable $th) { + return back()->with('error', 'Terjadi kesalahan: ' . $th->getMessage()); + } + } + + public function showLoginForm() + { + return view('auth.login'); // Pastikan view ini ada + } + + // Fungsi logout + public function logout() + { + Auth::logout(); + return redirect()->route('login'); + } +} diff --git a/app/Http/Controllers/Author/PostController.php b/app/Http/Controllers/Author/PostController.php new file mode 100644 index 0000000..e54a0e1 --- /dev/null +++ b/app/Http/Controllers/Author/PostController.php @@ -0,0 +1,66 @@ +route('login')->with('error', 'You need to be logged in to view this page.'); + } + + $posts = Post::with('categories') + ->where('user_id', Auth::user()->id) + ->orderBy('created_at', 'desc') + ->get(); + + $categories = Category::all(); + return view('author.post', compact('posts', 'categories')); + } + + public function store(PostRequest $request) +{ + // dd($request->all()); + $post = new Post(); + $post->title = $request->title; + $post->description = $request->description; + $post->user_id = Auth::user()->id; + + try { + + $post->save(); + foreach ($request->category_id as $item) { + $postCategory = new PostCategory(); + $postCategory->post_id = $post->id; + $postCategory->category_id = $item; + $postCategory->save(); + } + + // // Simpan kategori jika ada + // if ($request->has('category_id') && is_array($request->category_id)) { + // $post->categories()->attach($request->category_id); + // } + + + // // Alert::success('Berhasil', 'Mengajukan Postingan'); + return redirect()->back()->with('success', 'Postingan berhasil ditambahkan!'); + } catch (\Exception $e) { + // Log kesalahan untuk debugging + // \Log::error('Error while saving post: ' . $e->getMessage()); + + // Alert::error('Gagal', 'Mengajukan Postingan'); + return redirect()->back()->with('error', 'Gagal menambahkan postingan!'); + } +} + +} diff --git a/app/Http/Controllers/AuthorController.php b/app/Http/Controllers/AuthorController.php new file mode 100644 index 0000000..aefcd7a --- /dev/null +++ b/app/Http/Controllers/AuthorController.php @@ -0,0 +1,13 @@ +get(); + return view('author.bobot-kriteria', compact('kriterias')); + } + + public function edit($id) + { + try { + $bobotKriteria = DB::table('criterias') + ->where('id_criteria', $id) + ->first(); + + if (!$bobotKriteria) { + return redirect()->route('bobot.kriteria') + ->with('error', 'Data tidak ditemukan'); + } + + return view('author.bobot-kriteria-edit', compact('bobotKriteria')); + } catch (\Exception $e) { + return redirect()->route('bobot.kriteria') + ->with('error', 'Error: ' . $e->getMessage()); + } + } + + public function update(Request $request, $id) + { + try { + $request->validate([ + 'kriteria' => 'required', + 'bobot' => 'required|numeric|min:0|max:1' + ]); + + DB::table('criterias') + ->where('id_criteria', $id) + ->update([ + 'Kriteria' => $request->kriteria, + 'Bobot' => $request->bobot + ]); + + return redirect()->route('bobot.kriteria') + ->with('success', 'Data berhasil diupdate'); + } catch (\Exception $e) { + return redirect()->back() + ->with('error', 'Gagal mengupdate data: ' . $e->getMessage()); + } + } + + public function store(Request $request) + { + try { + $request->validate([ + 'Kriteria' => 'required', + 'Bobot' => 'required|numeric|min:0|max:1' + ]); + + DB::table('criterias')->insert([ + 'Kriteria' => $request->Kriteria, + 'Bobot' => $request->Bobot + ]); + + return redirect()->route('bobot.kriteria') + ->with('success', 'Kriteria berhasil ditambahkan'); + } catch (\Exception $e) { + return redirect()->back() + ->with('error', 'Gagal menambahkan kriteria: ' . $e->getMessage()) + ->withInput(); + } + } + + public function destroy($id) + { + try { + DB::table('criterias') + ->where('id_criteria', $id) + ->delete(); + + return redirect()->route('bobot.kriteria') + ->with('success', 'Data berhasil dihapus'); + } catch (\Exception $e) { + return redirect()->route('bobot.kriteria') + ->with('error', 'Gagal menghapus data: ' . $e->getMessage()); + } + } +} \ No newline at end of file diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..77ec359 --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,12 @@ +all(), [ + 'name' => 'required|string|max:255', + ]); + + if ($validator->fails()) { + return redirect()->back()->withErrors($validator)->withInput(); + } + + try { + Category::create(['name' => $request->name]); + return redirect()->route('categories.index')->with('success', 'Category added successfully'); + } catch (\Throwable $th) { + return redirect()->back()->with('error', 'An error occurred')->withInput(); + } + } + + + // Edit kategori + public function edit($id) + { + $category = Category::find($id); + if (!$category) { + return redirect()->back()->with('error', 'Category not found'); + } + return view('masterData.edit-category', compact('category')); + } + + // Update kategori + public function update(Request $request, $id) + { + $validator = Validator::make($request->all(), [ + 'nama' => 'required|string|max:255', + ]); + + if ($validator->fails()) { + return redirect()->back()->withErrors($validator)->withInput(); + } + + $category = Category::find($id); + if (!$category) { + return redirect()->back()->with('error', 'Category not found'); + } + + $category->name = $request->nama; + + try { + $category->save(); + return redirect()->route('categories.index')->with('success', 'Category updated successfully'); + } catch (\Throwable $th) { + return redirect()->back()->with('error', 'An error occurred')->withInput(); + } + } + + // Hapus kategori + public function destroy($id) + { + try { + $category = Category::findOrFail($id); + $category->delete(); + + return redirect()->back()->with('success', 'Category deleted successfully'); + } catch (\Exception $e) { + Log::error('Failed to delete category: ' . $e->getMessage()); + return redirect()->back()->with('error', 'Failed to delete category'); + } + } +} diff --git a/app/Http/Controllers/DataUserController.php b/app/Http/Controllers/DataUserController.php new file mode 100644 index 0000000..5475c81 --- /dev/null +++ b/app/Http/Controllers/DataUserController.php @@ -0,0 +1,59 @@ +get(); + return view('masterData.data-user',compact('users')); + } + + public function edit($id) + { + $user = User::findOrFail($id); // Mencari user berdasarkan ID, jika tidak ditemukan akan mengembalikan 404 + return view('masterData.data-user', compact('user')); // Mengirim data user ke view + } + + // Function untuk memperbarui data user + public function update(Request $request, $id) + { + // Validasi input + $request->validate([ + 'nama' => 'required|string|max:255', + 'email' => 'required|email|max:255', + 'status' => 'required|in:active,inactive', + ]); + + // Mencari user berdasarkan ID + $user = User::findOrFail($id); + + // Update data user + $user->name = $request->nama; + $user->email = $request->email; + $user->status = $request->status; + + try { + $user->save(); // Menyimpan perubahan ke database + return redirect()->back()->with('success', 'User updated successfully'); + } catch (\Throwable $th) { + return redirect()->back()->with('error', 'An error occurred')->withInput(); + } + } + + public function destroy($id) + { + try { + $user = User::findOrFail($id); + $user->delete(); + return redirect()->back()->with('success', 'User berhasil dihapus'); + } catch (\Exception $e) { + return redirect()->back()->with('error', 'Gagal menghapus user'); + } + } +} diff --git a/app/Http/Controllers/ForgotPasswordController.php b/app/Http/Controllers/ForgotPasswordController.php new file mode 100644 index 0000000..2e8c8c4 --- /dev/null +++ b/app/Http/Controllers/ForgotPasswordController.php @@ -0,0 +1,115 @@ + 'Email harus diisi', + 'email.email' => 'Email harus valid', + 'email.exists' => 'Email tidak terdaftar', + ]; + + $validator = Validator::make($request->all(), [ + 'email' => 'required|email|exists:users,email', + ], $customMessage); + + if ($validator->fails()) { + return redirect()->back() + ->withErrors($validator) + ->withInput(); + } + + $token = Str::random(60); + + PasswordResetTokenModel::updateOrCreate( + ['email' => $request->email], + [ + 'email' => $request->email, + 'token' => $token, + 'created_at' => Carbon::now() + ] + ); + + Mail::to($request->email)->send(new ResetPasswordMail($token)); + + return redirect()->back()->with('success', 'Tautan untuk melakukan reset password telah dikirim ke email ini.'); + } + + public function validationForgotPassword($token) + { + $getToken = PasswordResetTokenModel::where('token', $token)->first(); + + if (!$getToken) { + return redirect()->route('login.index')->with('error', 'Token tidak valid.'); + } + + return view('auth.validation-token', compact('token')); + } + + public function validationForgotPasswordProcess(Request $request) + { + $customMessage = [ + 'password.required' => 'Password harus diisi', + 'password.min' => 'Password minimal 6 karakter', + 'password.confirmed' => 'Konfirmasi password tidak sama', + 'password.regex' => 'Password harus mengandung huruf besar, kecil, angka, dan simbol', + ]; + + $validator = Validator::make($request->all(), [ + 'password' => [ + 'required', + 'confirmed', + 'regex:/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[\W_]).{8,}$/', + ], + ], $customMessage); + + if ($validator->fails()) { + return redirect()->back() + ->withErrors($validator) + ->withInput(); + } + + $token = PasswordResetTokenModel::where('token', $request->token)->first(); + + if (!$token) { + return redirect()->route('login.index')->with('error', 'Token tidak valid.'); + } + + $user = User::where('email', $token->email)->first(); + + if (!$user) { + return redirect()->route('login.index')->with('error', 'Pengguna tidak ditemukan.'); + } + + try { + $user->password = Hash::make($request->password); + $user->save(); + + $token->delete(); + + return redirect('/login')->with('success', 'Password berhasil diubah. Silakan login kembali.'); + } catch (\Throwable $th) { + return redirect()->route('login')->with('error', 'Terjadi kesalahan saat mengubah password.'); + } + } +} diff --git a/app/Http/Controllers/KriteriaController.php b/app/Http/Controllers/KriteriaController.php new file mode 100644 index 0000000..3644da7 --- /dev/null +++ b/app/Http/Controllers/KriteriaController.php @@ -0,0 +1,79 @@ +validate([ + 'nama' => 'required|string|max:255', + 'bobot' => 'required|numeric', + 'jenis' => 'required|in:benefit,cost' + ]); + + // Simpan data ke database + Kriteria::create($validatedData); + + // Redirect ke halaman daftar kriteria dengan pesan sukses + return redirect()->route('kriteria.index')->with('success', 'Kriteria berhasil ditambahkan'); + } + + public function edit($id) + { + // Ambil data kriteria berdasarkan ID, jika tidak ditemukan akan error 404 otomatis + $kriteria = Kriteria::findOrFail($id); + + // Tampilkan halaman form edit dengan data kriteria + return view('admin.kriteria.edit', compact('kriteria')); + } + + public function update(Request $request, $id) + { + // Validasi input + $validatedData = $request->validate([ + 'nama' => 'required|string|max:255', + 'bobot' => 'required|numeric', + 'jenis' => 'required|in:benefit,cost' + ]); + + // Cari data kriteria berdasarkan ID + $kriteria = Kriteria::findOrFail($id); + + // Update data + $kriteria->update($validatedData); + + // Redirect ke daftar kriteria dengan pesan sukses + return redirect()->route('kriteria.index')->with('success', 'Data kriteria berhasil diupdate'); + } + + public function destroy($id) + { + // Cari data kriteria berdasarkan ID + $kriteria = Kriteria::findOrFail($id); + + // Hapus data + $kriteria->delete(); + + // Redirect ke daftar kriteria dengan pesan sukses + return redirect()->route('kriteria.index')->with('success', 'Kriteria berhasil dihapus'); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/LoginController.php b/app/Http/Controllers/LoginController.php new file mode 100644 index 0000000..f4b8f32 --- /dev/null +++ b/app/Http/Controllers/LoginController.php @@ -0,0 +1,18 @@ +isNotEmpty()) { + // Membuat matriks keputusan + foreach ($alternatifs as $alternatif) { + foreach ($kriterias as $kriteria) { + $penilaian = $penilaians->where('alternatif_id', $alternatif->id) + ->where('kriteria_id', $kriteria->id) + ->first(); + + $nilai = $penilaian ? $penilaian->nilai : 0; + $matriksKeputusan[$alternatif->id][$kriteria->id] = $nilai; + } + } + + // Cari nilai max dan min untuk setiap kriteria + $maxMin = []; + foreach ($kriterias as $kriteria) { + $nilai_kriteria = collect($matriksKeputusan)->map(function ($row) use ($kriteria) { + return $row[$kriteria->id]; + })->filter(function ($nilai) { + return $nilai > 0; // Hanya ambil nilai yang lebih dari 0 + }); + + $maxMin[$kriteria->id] = [ + 'max' => $nilai_kriteria->max() ?: 1, + 'min' => $nilai_kriteria->min() ?: 1 + ]; + } + + // Normalisasi + foreach ($alternatifs as $alternatif) { + foreach ($kriterias as $kriteria) { + $nilai = $matriksKeputusan[$alternatif->id][$kriteria->id]; + + if ($nilai > 0) { + if ($kriteria->tipe === 'benefit') { + // Untuk kriteria benefit: nilai/nilai_max + $normalisasi[$alternatif->id][$kriteria->id] = + $nilai / $maxMin[$kriteria->id]['max']; + } else { + // Untuk kriteria cost: nilai_min/nilai + $normalisasi[$alternatif->id][$kriteria->id] = + $maxMin[$kriteria->id]['min'] / $nilai; + } + } else { + $normalisasi[$alternatif->id][$kriteria->id] = 0; + } + } + } + + // Hitung ranking + foreach ($alternatifs as $alternatif) { + $total = 0; + foreach ($kriterias as $kriteria) { + $normal = $normalisasi[$alternatif->id][$kriteria->id]; + $bobot = $kriteria->bobot; + $total += ($normal * $bobot); + } + $ranking[$alternatif->id] = round($total, 4); + } + + arsort($ranking); + + // Simpan hasil + DB::statement('ALTER TABLE hasil_penilaian MODIFY COLUMN nilai_akhir DECIMAL(10,4)'); + DB::table('hasil_penilaian')->truncate(); + + foreach ($ranking as $alternatif_id => $nilai_akhir) { + DB::table('hasil_penilaian')->insert([ + 'alternatif_id' => $alternatif_id, + 'nilai_akhir' => $nilai_akhir, + 'created_at' => now(), + 'updated_at' => now(), + ]); + } + } + + return view('admin.penilaian.index', compact( + 'alternatifs', 'kriterias', 'penilaians', + 'matriksKeputusan', 'normalisasi', 'ranking' + )); + } + + public function store(Request $request) + { + $request->validate([ + 'alternatif_id' => 'required|exists:alternatives,id', + 'n' => 'required|numeric', + 'p' => 'required|numeric', + 'k' => 'required|numeric', + 'harga' => 'required|numeric', + ]); + + $kriteriasByName = Kriteria::all()->keyBy('nama'); + + // Sesuaikan dengan nama di database + $nilaiInput = [ + $kriteriasByName->get('Kandungan Nitrogen (N)')->id ?? null => $request->n, + $kriteriasByName->get('Kandungan Fosfor (F)')->id ?? null => $request->p, + $kriteriasByName->get('Kandungan Kalium (k)')->id ?? null => $request->k, + $kriteriasByName->get('Harga')->id ?? null => $request->harga, + ]; + + foreach ($nilaiInput as $kriteria_id => $nilai_val) { + if (!empty($kriteria_id) && is_numeric($kriteria_id)) { + Penilaian::updateOrCreate( + [ + 'alternatif_id' => $request->alternatif_id, + 'kriteria_id' => (int)$kriteria_id + ], + ['nilai' => $nilai_val] + ); + } + } + + return redirect()->route('penilaian.index')->with('success', 'Penilaian berhasil disimpan'); + } + + public function destroy() + { + Penilaian::truncate(); + return redirect()->route('penilaian.hasil')->with('success', 'Semua hasil penilaian berhasil dihapus'); + } + + public function deleteAll() + { + Penilaian::truncate(); + return redirect()->route('admin.penilaian.index')->with('success', 'Semua penilaian berhasil dihapus.'); + } + + public function calculateSAW($alternatifs, $kriterias) + { + $normalized = []; + $scores = []; + + foreach ($kriterias as $kriteria) { + $key = $kriteria->nama; + $max = $alternatifs->max($key) ?: 1; + $min = $alternatifs->min($key) ?: 1; + + foreach ($alternatifs as $alternatif) { + $value = $alternatif->{$key} ?? 0; + $normalized[$alternatif->id][$kriteria->id] = + $kriteria->tipe === 'benefit' + ? ($max > 0 ? $value / $max : 0) + : ($value > 0 ? $min / $value : 0); + } + } + + foreach ($normalized as $alternatif_id => $values) { + $score = 0; + foreach ($kriterias as $kriteria) { + $bobot = $kriteria->bobot ?? 0.25; + $score += $values[$kriteria->id] * $bobot; + } + $scores[$alternatif_id] = round($score, 4); + } + + return $scores; + } +} \ No newline at end of file diff --git a/app/Http/Controllers/PostApprovalController.php b/app/Http/Controllers/PostApprovalController.php new file mode 100644 index 0000000..12bb350 --- /dev/null +++ b/app/Http/Controllers/PostApprovalController.php @@ -0,0 +1,56 @@ +orderByRaw("CASE WHEN status = 'pending' THEN 0 ELSE 1 END") + ->orderBy('created_at', 'asc') + ->get(); + + $categories = Category::all(); + + return view('admin.post-approval', [ + 'posts' => $posts, + 'categories' => $categories + ]); + } + + public function approve($id) + { + $post = Post::find($id); + $post->status_published = 'active'; + $post->status = 'published'; + + try { + $post->save(); + alert()->success('Berhasil', 'Menyetujui Postingan'); + return redirect()->back(); + } catch (\Throwable $th) { + alert()->error('Gagal', 'Menyetujui Postingan'); + return redirect()->back(); + } + } + + public function reject($id) + { + $post = Post::find($id); + $post->status = 'rejected'; + + try { + $post->save(); + alert()->success('Berhasil', 'Menolak Postingan'); + return redirect()->back(); + } catch (\Throwable $th) { + alert()->error('Gagal', 'Menolak Postingan'); + return redirect()->back(); + } + } +} diff --git a/app/Http/Controllers/PostController.php b/app/Http/Controllers/PostController.php new file mode 100644 index 0000000..f74567e --- /dev/null +++ b/app/Http/Controllers/PostController.php @@ -0,0 +1,12 @@ +namespace App\Http\Controllers; + +use Illuminate\Http\Request; + +class PostController extends Controller +{ + public function index() + { + // Logika untuk menampilkan data posts + return view('author.posts'); // Ganti dengan view yang sesuai + } +} \ No newline at end of file diff --git a/app/Http/Controllers/RekomendasiController.php b/app/Http/Controllers/RekomendasiController.php new file mode 100644 index 0000000..af49077 --- /dev/null +++ b/app/Http/Controllers/RekomendasiController.php @@ -0,0 +1,160 @@ +has(['nitrogen', 'fosfor', 'kalium', 'budget'])) { + $validated = $request->validate([ + 'nitrogen' => 'required|numeric|gt:0', + 'fosfor' => 'required|numeric|gt:0', + 'kalium' => 'required|numeric|gt:0', + 'budget' => 'required|numeric|gt:0' + ], [ + 'gt' => 'Nilai :attribute harus lebih dari 0', + 'required' => ':attribute tidak boleh kosong', + 'numeric' => ':attribute harus berupa angka' + ]); + + $kebutuhan_nitrogen = (float) $request->input('nitrogen'); + $kebutuhan_fosfor = (float) $request->input('fosfor'); + $kebutuhan_kalium = (float) $request->input('kalium'); + $budget = (float) $request->input('budget'); + + // Data alternatif pupuk + $alternatifs = [ + [ + 'nama' => 'Darah ', + 'N' => 12.18, + 'P' => 5.28, + 'K' => 0.15, + 'harga' => 4000 + ], + [ + 'nama' => 'Air Kelapa', + 'N' => 0.39, + 'P' => 4.95, + 'K' => 2.85, + 'harga' => 3000 + ], + [ + 'nama' => 'Pisang Busuk', + 'N' => 1.30, + 'P' => 0.02, + 'K' => 3.01, + 'harga' => 2500 + ], + [ + 'nama' => 'Urin Sapi', + 'N' => 1.00, + 'P' => 0.50, + 'K' => 1.50, + 'harga' => 1000 + ], + [ + 'nama' => 'Air Cucian Beras', + 'N' => 0.08, + 'P' => 0.02, + 'K' => 0.12, + 'harga' => 1500 + ] + ]; + + // Bobot kriteria + $bobot = [ + 'N' => 0.40, + 'P' => 0.20, + 'K' => 0.25, + 'harga' => 0.15 + ]; + + try { + // Ambil harga minimum dari alternatif (untuk normalisasi cost) + $min_harga = min(array_column($alternatifs, 'harga')); + + $results = []; + + foreach ($alternatifs as $a) { + // Normalisasi berdasarkan kebutuhan tanaman, bukan max dari alternatif + $normalized_N = min($a['N'] / $kebutuhan_nitrogen, 1); + $normalized_P = min($a['P'] / $kebutuhan_fosfor, 1); + $normalized_K = min($a['K'] / $kebutuhan_kalium, 1); + + // Normalisasi harga sebagai cost: harga minimum / harga alternatif + $normalized_harga = $min_harga / $a['harga']; + + // Hitung skor SAW (weighted sum) + $nilai = + ($normalized_N * $bobot['N']) + + ($normalized_P * $bobot['P']) + + ($normalized_K * $bobot['K']) + + ($normalized_harga * $bobot['harga']); + + // Filter sesuai budget + if ($a['harga'] <= $budget) { + $results[] = [ + 'nama' => $a['nama'], + 'N' => $a['N'], + 'P' => $a['P'], + 'K' => $a['K'], + 'harga' => $a['harga'], + 'normalized_N' => round($normalized_N, 4), + 'normalized_P' => round($normalized_P, 4), + 'normalized_K' => round($normalized_K, 4), + 'normalized_harga' => round($normalized_harga, 4), + 'nilai' => round($nilai, 4) + ]; + } + } + + if (empty($results)) { + return back()->withErrors('Tidak ada pupuk yang sesuai dengan anggaran Anda.'); + } + + $total_nilai = array_sum(array_column($results, 'nilai')); + + foreach ($results as &$result) { + $result['persentase'] = round(($result['nilai'] / $total_nilai) * 100, 2); + } + + // Urutkan dari nilai tertinggi + usort($results, function($a, $b) { + return $b['nilai'] <=> $a['nilai']; + }); + + $rekomendasi = (object) $results[0]; + + $input = [ + 'nitrogen' => $kebutuhan_nitrogen, + 'fosfor' => $kebutuhan_fosfor, + 'kalium' => $kebutuhan_kalium, + 'budget' => $budget + ]; + + return view('user.rekomendasi.index', [ + 'alternatifs' => $results, + 'rekomendasi' => $rekomendasi, + 'input' => $input, + 'maxmin' => [ + 'min_harga' => $min_harga + ], + 'bobot' => $bobot + ]); + } catch (\Exception $e) { + return back()->withErrors('Terjadi kesalahan dalam perhitungan: ' . $e->getMessage()); + } + } + + return view('user.rekomendasi.index', [ + 'alternatifs' => [], + 'rekomendasi' => null, + 'input' => null, + 'maxmin' => null, + 'bobot' => null + ]); + } +} diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php new file mode 100644 index 0000000..dff3149 --- /dev/null +++ b/app/Http/Controllers/UserController.php @@ -0,0 +1,65 @@ +validate([ + 'name' => 'required|string|max:255', + 'email' => 'required|string|email|max:255|unique:users,email,' . $user->id, + ]); + + $user->name = $request->name; + $user->email = $request->email; + $user->save(); + + return back()->with('success', 'Profil berhasil diperbarui!'); + } + + public function showInputData() + { + return view('user.input-data.index'); + } + + public function processInputData(Request $request) + { + // Validasi input + $validatedData = $request->validate([ + 'jenis_tanaman' => 'required|string', + 'kebutuhan_nutrisi' => 'required|string', + ]); + + // Redirect ke halaman rekomendasi sambil bawa data input + return redirect()->route('user.rekomendasi.index')->with('inputData', $validatedData); + } + + public function showRekomendasi() + { + // Ambil hasil penilaian SAW dari database + $rekomendasi = DB::table('hasil_penilaian') + ->orderByDesc('nilai_akhir') // nilai tertinggi + ->first(); // Ambil satu pupuk terbaik + + // Jika rekomendasi ditemukan, ambil data alternatif + if ($rekomendasi) { + $alternatif = DB::table('alternatives')->find($rekomendasi->alternatif_id); + return view('user.rekomendasi.index', compact('rekomendasi', 'alternatif')); + } + + return view('user.rekomendasi.index', compact('rekomendasi')); + } +} diff --git a/app/Http/Controllers/YourController.php b/app/Http/Controllers/YourController.php new file mode 100644 index 0000000..c74c311 --- /dev/null +++ b/app/Http/Controllers/YourController.php @@ -0,0 +1,21 @@ + + */ + protected $middleware = [ + // \App\Http\Middleware\TrustHosts::class, + \App\Http\Middleware\TrustProxies::class, + \Illuminate\Http\Middleware\HandleCors::class, + \App\Http\Middleware\PreventRequestsDuringMaintenance::class, + \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class, + \App\Http\Middleware\TrimStrings::class, + \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class, + ]; + + /** + * The application's route middleware groups. + * + * @var array> + */ + protected $middlewareGroups = [ + 'web' => [ + \App\Http\Middleware\EncryptCookies::class, + \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, + \Illuminate\Session\Middleware\StartSession::class, + \Illuminate\View\Middleware\ShareErrorsFromSession::class, + \App\Http\Middleware\VerifyCsrfToken::class, + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + + 'api' => [ + // \Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class, + \Illuminate\Routing\Middleware\ThrottleRequests::class.':api', + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + ]; + + /** + * The application's middleware aliases. + * + * Aliases may be used to conveniently assign middleware to routes and groups. + * + * @var array + */ + protected $middlewareAliases = [ + 'auth' => \App\Http\Middleware\Authenticate::class, + 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, + 'auth.session' => \Illuminate\Session\Middleware\AuthenticateSession::class, + 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, + 'can' => \Illuminate\Auth\Middleware\Authorize::class, + 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, + 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'signed' => \App\Http\Middleware\ValidateSignature::class, + 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, + 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, + ]; + + /** + * The application's route middleware. + * + * These middleware may be assigned to groups or used individually. + * + * @var array + */ + protected $routeMiddleware = [ + 'role' => \App\Http\Middleware\RoleMiddleware::class, + 'permission' => \Spatie\Permission\Middlewares\PermissionMiddleware::class, + 'role_or_permission' => \Spatie\Permission\Middlewares\RoleOrPermissionMiddleware::class, + 'admin' => \App\Http\Middleware\AdminMiddleware::class, + ]; +} diff --git a/app/Http/Middleware/AdminMiddleware.php b/app/Http/Middleware/AdminMiddleware.php new file mode 100644 index 0000000..324c30f --- /dev/null +++ b/app/Http/Middleware/AdminMiddleware.php @@ -0,0 +1,28 @@ +role === 'admin') { + return $next($request); + } + + // Jika bukan admin, redirect atau tampilkan error + return redirect()->route('home')->with('error', 'Anda tidak memiliki akses ke halaman ini.'); + } +} \ No newline at end of file diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php new file mode 100644 index 0000000..d4ef644 --- /dev/null +++ b/app/Http/Middleware/Authenticate.php @@ -0,0 +1,17 @@ +expectsJson() ? null : route('login'); + } +} diff --git a/app/Http/Middleware/EncryptCookies.php b/app/Http/Middleware/EncryptCookies.php new file mode 100644 index 0000000..867695b --- /dev/null +++ b/app/Http/Middleware/EncryptCookies.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Http/Middleware/PreventRequestsDuringMaintenance.php b/app/Http/Middleware/PreventRequestsDuringMaintenance.php new file mode 100644 index 0000000..74cbd9a --- /dev/null +++ b/app/Http/Middleware/PreventRequestsDuringMaintenance.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php new file mode 100644 index 0000000..cb7256b --- /dev/null +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -0,0 +1,34 @@ +check()) { + // Cek jika pengguna sudah berada di halaman login atau password reset + if ($request->is('login') || $request->is('password/*')) { + return redirect('author/dashboard'); // Arahkan ke halaman dashboard + } + return $next($request); // Biarkan pengguna tetap di halaman yang mereka tuju + } + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/RoleMiddleware.php b/app/Http/Middleware/RoleMiddleware.php new file mode 100644 index 0000000..b14aae9 --- /dev/null +++ b/app/Http/Middleware/RoleMiddleware.php @@ -0,0 +1,39 @@ +role); + \Log::info('Required role: ' . $role); + + if (!Auth::check()) { + return redirect('login'); + } + + // Jika perlu mendukung multiple roles, gunakan array atau explode + $roles = is_array($role) ? $role : explode('|', $role); + + if (!in_array(Auth::user()->role, $roles)) { + abort(403, 'Unauthorized action.'); + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php new file mode 100644 index 0000000..88cadca --- /dev/null +++ b/app/Http/Middleware/TrimStrings.php @@ -0,0 +1,19 @@ + + */ + protected $except = [ + 'current_password', + 'password', + 'password_confirmation', + ]; +} diff --git a/app/Http/Middleware/TrustHosts.php b/app/Http/Middleware/TrustHosts.php new file mode 100644 index 0000000..c9c58bd --- /dev/null +++ b/app/Http/Middleware/TrustHosts.php @@ -0,0 +1,20 @@ + + */ + public function hosts(): array + { + return [ + $this->allSubdomainsOfApplicationUrl(), + ]; + } +} diff --git a/app/Http/Middleware/TrustProxies.php b/app/Http/Middleware/TrustProxies.php new file mode 100644 index 0000000..3391630 --- /dev/null +++ b/app/Http/Middleware/TrustProxies.php @@ -0,0 +1,28 @@ +|string|null + */ + protected $proxies; + + /** + * The headers that should be used to detect proxies. + * + * @var int + */ + protected $headers = + Request::HEADER_X_FORWARDED_FOR | + Request::HEADER_X_FORWARDED_HOST | + Request::HEADER_X_FORWARDED_PORT | + Request::HEADER_X_FORWARDED_PROTO | + Request::HEADER_X_FORWARDED_AWS_ELB; +} diff --git a/app/Http/Middleware/ValidateSignature.php b/app/Http/Middleware/ValidateSignature.php new file mode 100644 index 0000000..093bf64 --- /dev/null +++ b/app/Http/Middleware/ValidateSignature.php @@ -0,0 +1,22 @@ + + */ + protected $except = [ + // 'fbclid', + // 'utm_campaign', + // 'utm_content', + // 'utm_medium', + // 'utm_source', + // 'utm_term', + ]; +} diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php new file mode 100644 index 0000000..9e86521 --- /dev/null +++ b/app/Http/Middleware/VerifyCsrfToken.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Http/Requests/PostRequest.php b/app/Http/Requests/PostRequest.php new file mode 100644 index 0000000..076b388 --- /dev/null +++ b/app/Http/Requests/PostRequest.php @@ -0,0 +1,42 @@ +|string> + */ + public function rules() + { + return [ + 'title' => 'required|max:25', + 'description' => 'required', + 'category_id' => 'required', + ]; + } + + public function messages() + { + return [ + 'title.required' => 'Judul harus diisi', + 'title.max' => 'Maksimal 25 karakter', + + 'description.required' => 'Deskripsi harus diisi', + + 'category_id.required' => 'Harap pilih kategori', + ]; + } +} \ No newline at end of file diff --git a/app/Mail/ResetPasswordMail.php b/app/Mail/ResetPasswordMail.php new file mode 100644 index 0000000..b21abc2 --- /dev/null +++ b/app/Mail/ResetPasswordMail.php @@ -0,0 +1,55 @@ +token = $token; + } + + /** + * Get the message envelope. + */ + public function envelope(): Envelope + { + return new Envelope( + subject: 'Reset Password E-Mail', + ); + } + + /** + * Get the message content definition. + */ + public function content(): Content + { + return new Content( + view: 'auth.mail-reset-password', + with: [ + 'token' => $this->token + ] + ); + } + + /** + * Get the attachments for the message. + * + * @return array + */ + public function attachments(): array + { + return []; + } +} \ No newline at end of file diff --git a/app/Models/Alternatif.php b/app/Models/Alternatif.php new file mode 100644 index 0000000..57e7830 --- /dev/null +++ b/app/Models/Alternatif.php @@ -0,0 +1,20 @@ + + */ + protected $fillable = [ + 'title', + 'kategori', + 'deskripsi' + ]; +} diff --git a/app/Models/BobotKriteria.php b/app/Models/BobotKriteria.php new file mode 100644 index 0000000..eed3683 --- /dev/null +++ b/app/Models/BobotKriteria.php @@ -0,0 +1,16 @@ + + */ + protected $fillable = [ + 'name', + + ]; +} diff --git a/app/Models/Kriteria.php b/app/Models/Kriteria.php new file mode 100644 index 0000000..1e7eb2a --- /dev/null +++ b/app/Models/Kriteria.php @@ -0,0 +1,27 @@ +weight dan $kriteria->type + public function getWeightAttribute() + { + return $this->attributes['Bobot']; + } + + public function getTypeAttribute() + { + return $this->attributes['jenis']; + } +} diff --git a/app/Models/PasswordResetTokenModel.php b/app/Models/PasswordResetTokenModel.php new file mode 100644 index 0000000..495b62b --- /dev/null +++ b/app/Models/PasswordResetTokenModel.php @@ -0,0 +1,18 @@ +belongsTo(Alternatif::class, 'alternatif_id'); + } + + public function kriteria() + { + return $this->belongsTo(Kriteria::class, 'kriteria_id', 'id_criteria'); + } +} \ No newline at end of file diff --git a/app/Models/Post.php b/app/Models/Post.php new file mode 100644 index 0000000..e533938 --- /dev/null +++ b/app/Models/Post.php @@ -0,0 +1,31 @@ +belongsTo(User::class, 'user_id', 'id'); + } + + public function categories() + { + return $this->belongsToMany(Category::class, 'post_categories', 'post_id', 'category_id'); + } +} diff --git a/app/Models/PostCategory.php b/app/Models/PostCategory.php new file mode 100644 index 0000000..4994ad0 --- /dev/null +++ b/app/Models/PostCategory.php @@ -0,0 +1,24 @@ +hasMany(Post::class, 'id', 'post_id'); + } + + public function category() + { + return $this->belongsTo(Category::class, 'category_id', 'id'); + } +} diff --git a/app/Models/User.php b/app/Models/User.php new file mode 100644 index 0000000..3e85ef1 --- /dev/null +++ b/app/Models/User.php @@ -0,0 +1,61 @@ + + */ + protected $fillable = [ + 'name', + 'email', + 'password', + 'role', + 'status' + ]; + + /** + * The attributes that should be hidden for serialization. + * + * @var array + */ + protected $hidden = [ + 'password', + 'remember_token', + ]; + + /** + * The attributes that should be cast. + * + * @var array + */ + protected $casts = [ + 'email_verified_at' => 'datetime', + ]; + + +/** + * Send the password reset notification. + * + * @param string $token + * @return void + */ + public function sendPasswordResetNotification($token) + { + $this->notify(new ResetPasswordNotification($token)); + } + +} diff --git a/app/Notifications/ResetPasswordNotification.php b/app/Notifications/ResetPasswordNotification.php new file mode 100644 index 0000000..81bd578 --- /dev/null +++ b/app/Notifications/ResetPasswordNotification.php @@ -0,0 +1,56 @@ +token = $token; + } + + /** + * Get the notification's delivery channels. + * + * @param mixed $notifiable + * @return array + */ + public function via($notifiable) + { + return ['mail']; + } + + /** + * Get the mail representation of the notification. + * + * @param mixed $notifiable + * @return \Illuminate\Notifications\Messages\MailMessage + */ + public function toMail($notifiable) + { + $url = url(route('password.reset', ['token' => $this->token, 'email' => $notifiable->email], false)); + + return (new MailMessage) + ->subject('Reset Password Notification') + ->line('You are receiving this email because we received a password reset request for your account.') + ->action('Reset Password', $url) + ->line('If you did not request a password reset, no further action is required.'); + } +} diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php new file mode 100644 index 0000000..452e6b6 --- /dev/null +++ b/app/Providers/AppServiceProvider.php @@ -0,0 +1,24 @@ + + */ + protected $policies = [ + // 'App\Models\Model' => 'App\Policies\ModelPolicy', + ]; + + /** + * Register any authentication / authorization services. + */ + public function boot(): void + { + $this->registerPolicies(); + + // + } +} diff --git a/app/Providers/BroadcastServiceProvider.php b/app/Providers/BroadcastServiceProvider.php new file mode 100644 index 0000000..2be04f5 --- /dev/null +++ b/app/Providers/BroadcastServiceProvider.php @@ -0,0 +1,19 @@ +> + */ + protected $listen = [ + Registered::class => [ + SendEmailVerificationNotification::class, + ], + ]; + + /** + * Register any events for your application. + */ + public function boot(): void + { + // + } + + /** + * Determine if events and listeners should be automatically discovered. + */ + public function shouldDiscoverEvents(): bool + { + return false; + } +} diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php new file mode 100644 index 0000000..bc49109 --- /dev/null +++ b/app/Providers/RouteServiceProvider.php @@ -0,0 +1,48 @@ +configureRateLimiting(); + + $this->routes(function () { + Route::middleware('api') + ->prefix('api') + ->group(base_path('routes/api.php')); + + Route::middleware('web') + ->group(base_path('routes/web.php')); + }); + } + + /** + * Configure the rate limiters for the application. + */ + protected function configureRateLimiting(): void + { + RateLimiter::for('api', function (Request $request) { + return Limit::perMinute(60)->by($request->user()?->id ?: $request->ip()); + }); + } +} diff --git a/artisan b/artisan new file mode 100644 index 0000000..67a3329 --- /dev/null +++ b/artisan @@ -0,0 +1,53 @@ +#!/usr/bin/env php +make(Illuminate\Contracts\Console\Kernel::class); + +$status = $kernel->handle( + $input = new Symfony\Component\Console\Input\ArgvInput, + new Symfony\Component\Console\Output\ConsoleOutput +); + +/* +|-------------------------------------------------------------------------- +| Shutdown The Application +|-------------------------------------------------------------------------- +| +| Once Artisan has finished running, we will fire off the shutdown events +| so that any final work may be done by the application before we shut +| down the process. This is the last thing to happen to the request. +| +*/ + +$kernel->terminate($input, $status); + +exit($status); diff --git a/bootstrap/app.php b/bootstrap/app.php new file mode 100644 index 0000000..037e17d --- /dev/null +++ b/bootstrap/app.php @@ -0,0 +1,55 @@ +singleton( + Illuminate\Contracts\Http\Kernel::class, + App\Http\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Console\Kernel::class, + App\Console\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Debug\ExceptionHandler::class, + App\Exceptions\Handler::class +); + +/* +|-------------------------------------------------------------------------- +| Return The Application +|-------------------------------------------------------------------------- +| +| This script returns the application instance. The instance is given to +| the calling script so we can separate the building of the instances +| from the actual running of the application and sending responses. +| +*/ + +return $app; diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..c779f8b --- /dev/null +++ b/composer.json @@ -0,0 +1,69 @@ +{ + "name": "laravel/laravel", + "type": "project", + "description": "The Laravel Framework.", + "keywords": ["framework", "laravel"], + "license": "MIT", + "require": { + "php": "^8.1", + "guzzlehttp/guzzle": "^7.2", + "laravel/framework": "^10.0", + "laravel/sanctum": "^3.2", + "laravel/tinker": "^2.8", + "realrashid/sweet-alert": "^7.2" + }, + "require-dev": { + "fakerphp/faker": "^1.9.1", + "laravel/pint": "^1.0", + "laravel/sail": "^1.18", + "mockery/mockery": "^1.4.4", + "nunomaduro/collision": "^7.0", + "phpunit/phpunit": "^10.0", + "spatie/laravel-ignition": "^2.0" + }, + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Factories\\": "database/factories/", + "Database\\Seeders\\": "database/seeders/" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" + } + }, + "scripts": { + "post-autoload-dump": [ + "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", + "@php artisan package:discover --ansi" + ], + "post-update-cmd": [ + "@php artisan vendor:publish --tag=laravel-assets --ansi --force" + ], + "post-root-package-install": [ + "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" + ], + "post-create-project-cmd": [ + "@php artisan key:generate --ansi" + ] + }, + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + }, + "laravel": { + "dont-discover": [] + } + }, + "config": { + "optimize-autoloader": true, + "preferred-install": "dist", + "sort-packages": true, + "allow-plugins": { + "pestphp/pest-plugin": true + } + }, + "minimum-stability": "stable", + "prefer-stable": true +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..2a1b449 --- /dev/null +++ b/composer.lock @@ -0,0 +1,8293 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "36d47ca0654f6d7aa9d0c9fbc7ef90a4", + "packages": [ + { + "name": "brick/math", + "version": "0.12.1", + "source": { + "type": "git", + "url": "https://github.com/brick/math.git", + "reference": "f510c0a40911935b77b86859eb5223d58d660df1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1", + "reference": "f510c0a40911935b77b86859eb5223d58d660df1", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^10.1", + "vimeo/psalm": "5.16.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Brick\\Math\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Arbitrary-precision arithmetic library", + "keywords": [ + "Arbitrary-precision", + "BigInteger", + "BigRational", + "arithmetic", + "bigdecimal", + "bignum", + "bignumber", + "brick", + "decimal", + "integer", + "math", + "mathematics", + "rational" + ], + "support": { + "issues": "https://github.com/brick/math/issues", + "source": "https://github.com/brick/math/tree/0.12.1" + }, + "funding": [ + { + "url": "https://github.com/BenMorel", + "type": "github" + } + ], + "time": "2023-11-29T23:19:16+00:00" + }, + { + "name": "carbonphp/carbon-doctrine-types", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git", + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "doctrine/dbal": "<3.7.0 || >=4.0.0" + }, + "require-dev": { + "doctrine/dbal": "^3.7.0", + "nesbot/carbon": "^2.71.0 || ^3.0.0", + "phpunit/phpunit": "^10.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "KyleKatarn", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Types to use Carbon in Doctrine", + "keywords": [ + "carbon", + "date", + "datetime", + "doctrine", + "time" + ], + "support": { + "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0" + }, + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2023-12-11T17:09:12+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.3", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" + }, + "time": "2024-07-08T12:26:09+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.10", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.10" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2024-02-18T20:23:39+00:00" + }, + { + "name": "doctrine/lexer", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/3.0.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:56:58+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.3.3", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-webmozart-assert": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2023-08-10T19:36:49+00:00" + }, + { + "name": "egulias/email-validator", + "version": "4.0.2", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" + }, + "require-dev": { + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/4.0.2" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2023-10-06T06:47:41+00:00" + }, + { + "name": "fruitcake/php-cors", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/fruitcake/php-cors.git", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b", + "shasum": "" + }, + "require": { + "php": "^7.4|^8.0", + "symfony/http-foundation": "^4.4|^5.4|^6|^7" + }, + "require-dev": { + "phpstan/phpstan": "^1.4", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "Fruitcake\\Cors\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fruitcake", + "homepage": "https://fruitcake.nl" + }, + { + "name": "Barryvdh", + "email": "barryvdh@gmail.com" + } + ], + "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", + "homepage": "https://github.com/fruitcake/php-cors", + "keywords": [ + "cors", + "laravel", + "symfony" + ], + "support": { + "issues": "https://github.com/fruitcake/php-cors/issues", + "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2023-10-12T05:21:21+00:00" + }, + { + "name": "graham-campbell/result-type", + "version": "v1.1.3", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.3" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:45:45+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.9.2", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.5.3 || ^2.0.3", + "guzzlehttp/psr7": "^2.7.0", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-curl": "*", + "guzzle/client-integration-tests": "3.0.2", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.39 || ^9.6.20", + "psr/log": "^1.1 || ^2.0 || ^3.0" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.9.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2024-07-24T11:22:20+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", + "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2024-07-18T10:29:17+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.7.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "0.9.0", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.7.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2024-07-18T11:15:46+00:00" + }, + { + "name": "guzzlehttp/uri-template", + "version": "v1.0.3", + "source": { + "type": "git", + "url": "https://github.com/guzzle/uri-template.git", + "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c", + "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "uri-template/tests": "1.0.0" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\UriTemplate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + } + ], + "description": "A polyfill class for uri_template of PHP", + "keywords": [ + "guzzlehttp", + "uri-template" + ], + "support": { + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", + "type": "tidelift" + } + ], + "time": "2023-12-03T19:50:20+00:00" + }, + { + "name": "laravel/framework", + "version": "v10.48.20", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "be2be342d4c74db6a8d2bd18469cd6d488ab9c98" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/be2be342d4c74db6a8d2bd18469cd6d488ab9c98", + "reference": "be2be342d4c74db6a8d2bd18469cd6d488ab9c98", + "shasum": "" + }, + "require": { + "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.3.2", + "egulias/email-validator": "^3.2.1|^4.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-session": "*", + "ext-tokenizer": "*", + "fruitcake/php-cors": "^1.2", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.1.9", + "laravel/serializable-closure": "^1.3", + "league/commonmark": "^2.2.1", + "league/flysystem": "^3.8.0", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^2.67", + "nunomaduro/termwind": "^1.13", + "php": "^8.1", + "psr/container": "^1.1.1|^2.0.1", + "psr/log": "^1.0|^2.0|^3.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "ramsey/uuid": "^4.7", + "symfony/console": "^6.2", + "symfony/error-handler": "^6.2", + "symfony/finder": "^6.2", + "symfony/http-foundation": "^6.4", + "symfony/http-kernel": "^6.2", + "symfony/mailer": "^6.2", + "symfony/mime": "^6.2", + "symfony/process": "^6.2", + "symfony/routing": "^6.2", + "symfony/uid": "^6.2", + "symfony/var-dumper": "^6.2", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", + "vlucas/phpdotenv": "^5.4.1", + "voku/portable-ascii": "^2.0" + }, + "conflict": { + "carbonphp/carbon-doctrine-types": ">=3.0", + "doctrine/dbal": ">=4.0", + "mockery/mockery": "1.6.8", + "phpunit/phpunit": ">=11.0.0", + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.1|2.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/collections": "self.version", + "illuminate/conditionable": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/log": "self.version", + "illuminate/macroable": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/process": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/testing": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version" + }, + "require-dev": { + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.235.5", + "doctrine/dbal": "^3.5.1", + "ext-gmp": "*", + "fakerphp/faker": "^1.21", + "guzzlehttp/guzzle": "^7.5", + "league/flysystem-aws-s3-v3": "^3.0", + "league/flysystem-ftp": "^3.0", + "league/flysystem-path-prefixing": "^3.3", + "league/flysystem-read-only": "^3.3", + "league/flysystem-sftp-v3": "^3.0", + "mockery/mockery": "^1.5.1", + "nyholm/psr7": "^1.2", + "orchestra/testbench-core": "^8.23.4", + "pda/pheanstalk": "^4.0", + "phpstan/phpstan": "^1.4.7", + "phpunit/phpunit": "^10.0.7", + "predis/predis": "^2.0.2", + "symfony/cache": "^6.2", + "symfony/http-client": "^6.2.4", + "symfony/psr-http-message-bridge": "^2.0" + }, + "suggest": { + "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", + "brianium/paratest": "Required to run tests in parallel (^6.0).", + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).", + "ext-apcu": "Required to use the APC cache driver.", + "ext-fileinfo": "Required to use the Filesystem class.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "ext-memcached": "Required to use the memcache cache driver.", + "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", + "ext-pdo": "Required to use all database features.", + "ext-posix": "Required to use all features of the queue worker.", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", + "league/flysystem-read-only": "Required to use read-only disks (^3.3)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", + "mockery/mockery": "Required to use mocking (^1.5.1).", + "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", + "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).", + "predis/predis": "Required to use the predis connector (^2.0.2).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^6.2).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/", + "src/Illuminate/Conditionable/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-08-09T07:55:45+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.1.24", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "409b0b4305273472f3754826e68f4edbd0150149" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/409b0b4305273472f3754826e68f4edbd0150149", + "reference": "409b0b4305273472f3754826e68f4edbd0150149", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/collections": "^10.0|^11.0", + "php": "^8.1", + "symfony/console": "^6.2|^7.0" + }, + "conflict": { + "illuminate/console": ">=10.17.0 <10.25.0", + "laravel/framework": ">=10.17.0 <10.25.0" + }, + "require-dev": { + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-mockery": "^1.1" + }, + "suggest": { + "ext-pcntl": "Required for the spinner to be animated." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.1.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Laravel\\Prompts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Add beautiful and user-friendly forms to your command-line applications.", + "support": { + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.1.24" + }, + "time": "2024-06-17T13:58:22+00:00" + }, + { + "name": "laravel/sanctum", + "version": "v3.3.3", + "source": { + "type": "git", + "url": "https://github.com/laravel/sanctum.git", + "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/8c104366459739f3ada0e994bcd3e6fd681ce3d5", + "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/console": "^9.21|^10.0", + "illuminate/contracts": "^9.21|^10.0", + "illuminate/database": "^9.21|^10.0", + "illuminate/support": "^9.21|^10.0", + "php": "^8.0.2" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "orchestra/testbench": "^7.28.2|^8.8.3", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Sanctum\\SanctumServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sanctum\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.", + "keywords": [ + "auth", + "laravel", + "sanctum" + ], + "support": { + "issues": "https://github.com/laravel/sanctum/issues", + "source": "https://github.com/laravel/sanctum" + }, + "time": "2023-12-19T18:44:48+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v1.3.4", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/61b87392d986dc49ad5ef64e75b1ff5fee24ef81", + "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", + "nesbot/carbon": "^2.61|^3.0", + "pestphp/pest": "^1.21.3", + "phpstan/phpstan": "^1.8.2", + "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2024-08-02T07:48:17+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.9.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe", + "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe", + "shasum": "" + }, + "require": { + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "php": "^7.2.5|^8.0", + "psy/psysh": "^0.11.1|^0.12.0", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.5.8|^9.3.3" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)." + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Tinker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v2.9.0" + }, + "time": "2024-01-04T16:10:04+00:00" + }, + { + "name": "league/commonmark", + "version": "2.5.2", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "df09d5b6a4188f8f3c3ab2e43a109076a5eeb767" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/df09d5b6a4188f8f3c3ab2e43a109076a5eeb767", + "reference": "df09d5b6a4188f8f3c3ab2e43a109076a5eeb767", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.31.0", + "commonmark/commonmark.js": "0.31.0", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0 || ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.6-dev" + } + }, + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", + "keywords": [ + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" + ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" + } + ], + "time": "2024-08-14T10:56:57+00:00" + }, + { + "name": "league/config", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2022-12-11T20:36:23+00:00" + }, + { + "name": "league/flysystem", + "version": "3.28.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c", + "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c", + "shasum": "" + }, + "require": { + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", + "aws/aws-sdk-php": "3.209.31 || 3.210.0", + "guzzlehttp/guzzle": "<7.0", + "guzzlehttp/ringphp": "<1.1.1", + "phpseclib/phpseclib": "3.0.15", + "symfony/http-client": "<5.2" + }, + "require-dev": { + "async-aws/s3": "^1.5 || ^2.0", + "async-aws/simple-s3": "^1.1 || ^2.0", + "aws/aws-sdk-php": "^3.295.10", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "ext-mongodb": "^1.3", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.5", + "google/cloud-storage": "^1.23", + "guzzlehttp/psr7": "^2.6", + "microsoft/azure-storage-blob": "^1.1", + "mongodb/mongodb": "^1.2", + "phpseclib/phpseclib": "^3.0.36", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", + "sabre/dav": "^4.6.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/3.28.0" + }, + "time": "2024-05-22T10:09:12+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.28.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/13f22ea8be526ea58c2ddff9e158ef7c296e4f40", + "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "source": "https://github.com/thephpleague/flysystem-local/tree/3.28.0" + }, + "time": "2024-05-06T20:05:52+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.15.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301", + "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2024-01-28T23:22:08+00:00" + }, + { + "name": "monolog/monolog", + "version": "3.7.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8", + "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "3.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2 || ^2.0", + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/psr7": "^2.2", + "mongodb/mongodb": "^1.8", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-strict-rules": "^1.4", + "phpunit/phpunit": "^10.5.17", + "predis/predis": "^1.1 || ^2", + "ruflin/elastica": "^7", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/3.7.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2024-06-28T09:40:51+00:00" + }, + { + "name": "nesbot/carbon", + "version": "2.72.5", + "source": { + "type": "git", + "url": "https://github.com/briannesbitt/Carbon.git", + "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed", + "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "*", + "ext-json": "*", + "php": "^7.1.8 || ^8.0", + "psr/clock": "^1.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16", + "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0", + "doctrine/orm": "^2.7 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.0", + "kylekatarnls/multi-tester": "^2.0", + "ondrejmirtes/better-reflection": "*", + "phpmd/phpmd": "^2.9", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12.99 || ^1.7.14", + "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", + "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", + "squizlabs/php_codesniffer": "^3.4" + }, + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev", + "dev-2.x": "2.x-dev" + }, + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Carbon\\": "src/Carbon/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "https://markido.com" + }, + { + "name": "kylekatarnls", + "homepage": "https://github.com/kylekatarnls" + } + ], + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "https://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ], + "support": { + "docs": "https://carbon.nesbot.com/docs", + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, + "funding": [ + { + "url": "https://github.com/sponsors/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon#sponsor", + "type": "opencollective" + }, + { + "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", + "type": "tidelift" + } + ], + "time": "2024-06-03T19:18:41+00:00" + }, + { + "name": "nette/schema", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", + "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", + "shasum": "" + }, + "require": { + "nette/utils": "^4.0", + "php": "8.1 - 8.3" + }, + "require-dev": { + "nette/tester": "^2.4", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.3.0" + }, + "time": "2023-12-11T11:54:22+00:00" + }, + { + "name": "nette/utils", + "version": "v4.0.5", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "shasum": "" + }, + "require": { + "php": "8.0 - 8.4" + }, + "conflict": { + "nette/finder": "<3", + "nette/schema": "<1.2.2" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "dev-master", + "nette/tester": "^2.5", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.9" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v4.0.5" + }, + "time": "2024-08-07T15:39:19+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v5.1.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1", + "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0" + }, + "time": "2024-07-01T20:03:41+00:00" + }, + { + "name": "nunomaduro/termwind", + "version": "v1.15.1", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc", + "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.0", + "symfony/console": "^5.3.0|^6.0.0" + }, + "require-dev": { + "ergebnis/phpstan-rules": "^1.0.", + "illuminate/console": "^8.0|^9.0", + "illuminate/support": "^8.0|^9.0", + "laravel/pint": "^1.0.0", + "pestphp/pest": "^1.21.0", + "pestphp/pest-plugin-mock": "^1.0", + "phpstan/phpstan": "^1.4.6", + "phpstan/phpstan-strict-rules": "^1.1.0", + "symfony/var-dumper": "^5.2.7|^6.0.0", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/Functions.php" + ], + "psr-4": { + "Termwind\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Its like Tailwind CSS, but for the console.", + "keywords": [ + "cli", + "console", + "css", + "package", + "php", + "style" + ], + "support": { + "issues": "https://github.com/nunomaduro/termwind/issues", + "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://github.com/xiCO2k", + "type": "github" + } + ], + "time": "2023-02-08T01:06:31+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.3", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:41:07+00:00" + }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/http-client", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client" + }, + "time": "2023-09-23T14:17:50+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory" + }, + "time": "2024-04-15T12:06:14+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.0" + }, + "time": "2021-07-14T16:46:02+00:00" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "time": "2021-10-29T13:26:27+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.12.4", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818", + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.12.x-dev" + }, + "bamarni-bin": { + "bin-links": false, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.12.4" + }, + "time": "2024-06-10T01:18:23+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/collection", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.28.3", + "fakerphp/faker": "^1.21", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^1.0", + "mockery/mockery": "^1.5", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpcsstandards/phpcsutils": "^1.0.0-rc1", + "phpspec/prophecy-phpunit": "^2.0", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5", + "psalm/plugin-mockery": "^1.1", + "psalm/plugin-phpunit": "^0.18.4", + "ramsey/coding-standard": "^2.0.3", + "ramsey/conventional-commits": "^1.3", + "vimeo/psalm": "^5.4" + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP library for representing and manipulating collections.", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", + "type": "tidelift" + } + ], + "time": "2022-12-31T21:50:55+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.7.6", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", + "ext-json": "*", + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.8", + "ergebnis/composer-normalize": "^2.15", + "mockery/mockery": "^1.3", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", + "php-mock/php-mock-mockery": "^1.3", + "php-parallel-lint/php-parallel-lint": "^1.1", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^8.5 || ^9", + "ramsey/composer-repl": "^1.4", + "slevomat/coding-standard": "^8.4", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.9" + }, + "suggest": { + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.7.6" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2024-04-27T21:32:50+00:00" + }, + { + "name": "realrashid/sweet-alert", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/realrashid/sweet-alert.git", + "reference": "7890f3d3a0f45ea65b90300a823681a99a1d2dd6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/realrashid/sweet-alert/zipball/7890f3d3a0f45ea65b90300a823681a99a1d2dd6", + "reference": "7890f3d3a0f45ea65b90300a823681a99a1d2dd6", + "shasum": "" + }, + "require": { + "laravel/framework": "^5.6|^6.0|^7.0|^8.0|^9.0|^9.11|9.14.*|^10.0|^11.0", + "php": "^7.2|^8.0|^8.1|^8.2|^8.3" + }, + "require-dev": { + "symfony/thanks": "^1.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "RealRashid\\SweetAlert\\SweetAlertServiceProvider" + ], + "aliases": { + "Alert": "RealRashid\\SweetAlert\\Facades\\Alert" + } + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "RealRashid\\SweetAlert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Rashid Ali", + "email": "realrashid05@gmail.com", + "homepage": "https://realrashid.com", + "role": "Developer" + } + ], + "description": "Laravel Sweet Alert Is A Package For Laravel Provides An Easy Way To Display Alert Messages Using The SweetAlert2 Library.", + "homepage": "https://github.com/realrashid/sweet-alert", + "keywords": [ + "alert", + "laravel", + "laravel-package", + "notifier", + "noty", + "sweet-alert", + "sweet-alert2", + "toast" + ], + "support": { + "docs": "https://realrashid.github.io/sweet-alert/", + "email": "realrashid05@gmail.com", + "issues": "https://github.com/realrashid/sweet-alert/issues", + "source": "https://github.com/realrashid/sweet-alert" + }, + "funding": [ + { + "url": "https://ko-fi.com/realrashid", + "type": "custom" + }, + { + "url": "https://www.buymeacoffee.com/realrashid", + "type": "custom" + }, + { + "url": "https://issuehunt.io/r/realrashid", + "type": "issuehunt" + }, + { + "url": "https://tidelift.com/funding/github/packagist/realrashid/sweet-alert", + "type": "tidelift" + } + ], + "time": "2024-06-15T16:17:23+00:00" + }, + { + "name": "symfony/console", + "version": "v6.4.10", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "504974cbe43d05f83b201d6498c206f16fc0cdbc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/504974cbe43d05f83b201d6498c206f16fc0cdbc", + "reference": "504974cbe43d05f83b201d6498c206f16fc0cdbc", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^5.4|^6.0|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<5.4", + "symfony/dotenv": "<5.4", + "symfony/event-dispatcher": "<5.4", + "symfony/lock": "<5.4", + "symfony/process": "<5.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v6.4.10" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-07-26T12:30:32+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "4b61b02fe15db48e3687ce1c45ea385d1780fe08" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/4b61b02fe15db48e3687ce1c45ea385d1780fe08", + "reference": "4b61b02fe15db48e3687ce1c45ea385d1780fe08", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v6.4.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:49:08+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v6.4.10", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "231f1b2ee80f72daa1972f7340297d67439224f0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/231f1b2ee80f72daa1972f7340297d67439224f0", + "reference": "231f1b2ee80f72daa1972f7340297d67439224f0", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^5.4|^6.0|^7.0" + }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v6.4.10" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-07-26T12:30:32+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b", + "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<5.4", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:49:08+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50", + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/finder", + "version": "v6.4.10", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "af29198d87112bebdd397bd7735fbd115997824c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/af29198d87112bebdd397bd7735fbd115997824c", + "reference": "af29198d87112bebdd397bd7735fbd115997824c", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "symfony/filesystem": "^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v6.4.10" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-07-24T07:06:38+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v6.4.10", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "117f1f20a7ade7bcea28b861fb79160a21a1e37b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/117f1f20a7ade7bcea28b861fb79160a21a1e37b", + "reference": "117f1f20a7ade7bcea28b861fb79160a21a1e37b", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "symfony/cache": "<6.3" + }, + "require-dev": { + "doctrine/dbal": "^2.13.1|^3|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.3|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0", + "symfony/mime": "^5.4|^6.0|^7.0", + "symfony/rate-limiter": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v6.4.10" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-07-26T12:36:27+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v6.4.10", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "147e0daf618d7575b5007055340d09aece5cf068" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/147e0daf618d7575b5007055340d09aece5cf068", + "reference": "147e0daf618d7575b5007055340d09aece5cf068", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<5.4", + "symfony/cache": "<5.4", + "symfony/config": "<6.1", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<5.4", + "symfony/form": "<5.4", + "symfony/http-client": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<5.4", + "symfony/messenger": "<5.4", + "symfony/translation": "<5.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<5.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.3", + "twig/twig": "<2.13" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^5.4|^6.0|^7.0", + "symfony/clock": "^6.2|^7.0", + "symfony/config": "^6.1|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/css-selector": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/property-access": "^5.4.5|^6.0.5|^7.0", + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.4.4|^7.0.4", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/translation": "^5.4|^6.0|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^5.4|^6.0|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^5.4|^6.4|^7.0", + "symfony/var-exporter": "^6.2|^7.0", + "twig/twig": "^2.13|^3.0.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v6.4.10" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-07-26T14:52:04+00:00" + }, + { + "name": "symfony/mailer", + "version": "v6.4.9", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45", + "reference": "e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.1", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/mime": "^6.2|^7.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/messenger": "<6.2", + "symfony/mime": "<6.2", + "symfony/twig-bridge": "<6.2.1" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/messenger": "^6.2|^7.0", + "symfony/twig-bridge": "^6.2|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mailer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Helps sending emails", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/mailer/tree/v6.4.9" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-06-28T07:59:05+00:00" + }, + { + "name": "symfony/mime", + "version": "v6.4.9", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "7d048964877324debdcb4e0549becfa064a20d43" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/7d048964877324debdcb4e0549becfa064a20d43", + "reference": "7d048964877324debdcb4e0549becfa064a20d43", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<5.4", + "symfony/serializer": "<6.4.3|>7.0,<7.0.3" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.4|^7.0", + "symfony/property-access": "^5.4|^6.0|^7.0", + "symfony/property-info": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.4.3|^7.0.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v6.4.9" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-06-28T09:49:33+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.30.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "0424dff1c58f028c451efff2045f5d92410bd540" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540", + "reference": "0424dff1c58f028c451efff2045f5d92410bd540", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T15:07:36+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.30.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a", + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T15:07:36+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.30.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T15:07:36+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.30.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb", + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T15:07:36+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.30.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c", + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-06-19T12:30:46+00:00" + }, + { + "name": "symfony/polyfill-php72", + "version": "v1.30.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "10112722600777e02d2745716b70c5db4ca70442" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442", + "reference": "10112722600777e02d2745716b70c5db4ca70442", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-06-19T12:30:46+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.30.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "77fa7995ac1b21ab60769b7323d600a991a90433" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", + "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T15:07:36+00:00" + }, + { + "name": "symfony/polyfill-php83", + "version": "v1.30.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9", + "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php83\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php83/tree/v1.30.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-06-19T12:35:24+00:00" + }, + { + "name": "symfony/polyfill-uuid", + "version": "v1.30.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-uuid.git", + "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/2ba1f33797470debcda07fe9dce20a0003df18e9", + "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-uuid": "*" + }, + "suggest": { + "ext-uuid": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Uuid\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for uuid functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.30.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T15:07:36+00:00" + }, + { + "name": "symfony/process", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5", + "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v6.4.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:49:08+00:00" + }, + { + "name": "symfony/routing", + "version": "v6.4.10", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "aad19fe10753ba842f0d653a8db819c4b3affa87" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/aad19fe10753ba842f0d653a8db819c4b3affa87", + "reference": "aad19fe10753ba842f0d653a8db819c4b3affa87", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "doctrine/annotations": "<1.12", + "symfony/config": "<6.2", + "symfony/dependency-injection": "<5.4", + "symfony/yaml": "<5.4" + }, + "require-dev": { + "doctrine/annotations": "^1.12|^2", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.2|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/yaml": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Maps an HTTP request to a set of configuration variables", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], + "support": { + "source": "https://github.com/symfony/routing/tree/v6.4.10" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-07-15T09:26:24+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/string", + "version": "v6.4.10", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "ccf9b30251719567bfd46494138327522b9a9446" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/ccf9b30251719567bfd46494138327522b9a9446", + "reference": "ccf9b30251719567bfd46494138327522b9a9446", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/error-handler": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/intl": "^6.2|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v6.4.10" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-07-22T10:21:14+00:00" + }, + { + "name": "symfony/translation", + "version": "v6.4.10", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "94041203f8ac200ae9e7c6a18fa6137814ccecc9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/94041203f8ac200ae9e7c6a18fa6137814ccecc9", + "reference": "94041203f8ac200ae9e7c6a18fa6137814ccecc9", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "symfony/config": "<5.4", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<5.4", + "symfony/yaml": "<5.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^4.18|^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/intl": "^5.4|^6.0|^7.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v6.4.10" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-07-26T12:30:32+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", + "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/uid", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "35904eca37a84bb764c560cbfcac9f0ac2bcdbdf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/35904eca37a84bb764c560cbfcac9f0ac2bcdbdf", + "reference": "35904eca37a84bb764c560cbfcac9f0ac2bcdbdf", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Uid\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to generate and represent UIDs", + "homepage": "https://symfony.com", + "keywords": [ + "UID", + "ulid", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/uid/tree/v6.4.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:49:08+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v6.4.10", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "a71cc3374f5fb9759da1961d28c452373b343dd4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a71cc3374f5fb9759da1961d28c452373b343dd4", + "reference": "a71cc3374f5fb9759da1961d28c452373b343dd4", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<5.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^6.3|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/uid": "^5.4|^6.0|^7.0", + "twig/twig": "^2.13|^3.0.4" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v6.4.10" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-07-26T12:30:32+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "v2.2.7", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb", + "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": "^5.5 || ^7.0 || ^8.0", + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", + "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7" + }, + "time": "2023-12-08T13:03:43+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.6.1", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.3", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.3", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-filter": "*", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "5.6-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:52:34+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "b56450eed252f6801410d810c8e1727224ae0743" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", + "reference": "b56450eed252f6801410d810c8e1727224ae0743", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "http://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/2.0.1" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2022-03-08T17:03:00+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], + "packages-dev": [ + { + "name": "fakerphp/faker", + "version": "v1.23.1", + "source": { + "type": "git", + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b", + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "conflict": { + "fzaninotto/faker": "*" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "doctrine/persistence": "^1.3 || ^2.0", + "ext-intl": "*", + "phpunit/phpunit": "^9.5.26", + "symfony/phpunit-bridge": "^5.4.16" + }, + "suggest": { + "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." + }, + "type": "library", + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1" + }, + "time": "2024-01-02T13:46:09+00:00" + }, + { + "name": "filp/whoops", + "version": "2.15.4", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546", + "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546", + "shasum": "" + }, + "require": { + "php": "^5.5.9 || ^7.0 || ^8.0", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "require-dev": { + "mockery/mockery": "^0.9 || ^1.0", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.15.4" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2023-11-03T12:00:00+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, + "time": "2020-07-09T08:09:16+00:00" + }, + { + "name": "laravel/pint", + "version": "v1.17.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "e8a88130a25e3f9d4d5785e6a1afca98268ab110" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/e8a88130a25e3f9d4d5785e6a1afca98268ab110", + "reference": "e8a88130a25e3f9d4d5785e6a1afca98268ab110", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.61.1", + "illuminate/view": "^10.48.18", + "larastan/larastan": "^2.9.8", + "laravel-zero/framework": "^10.4.0", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^1.15.1", + "pestphp/pest": "^2.35.0" + }, + "bin": [ + "builds/pint" + ], + "type": "project", + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Seeders\\": "database/seeders/", + "Database\\Factories\\": "database/factories/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "An opinionated code formatter for PHP.", + "homepage": "https://laravel.com", + "keywords": [ + "format", + "formatter", + "lint", + "linter", + "php" + ], + "support": { + "issues": "https://github.com/laravel/pint/issues", + "source": "https://github.com/laravel/pint" + }, + "time": "2024-08-06T15:11:54+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.31.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "3d06dd18cee8059baa7b388af00ba47f6d96bd85" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/3d06dd18cee8059baa7b388af00ba47f6d96bd85", + "reference": "3d06dd18cee8059baa7b388af00ba47f6d96bd85", + "shasum": "" + }, + "require": { + "illuminate/console": "^9.52.16|^10.0|^11.0", + "illuminate/contracts": "^9.52.16|^10.0|^11.0", + "illuminate/support": "^9.52.16|^10.0|^11.0", + "php": "^8.0", + "symfony/console": "^6.0|^7.0", + "symfony/yaml": "^6.0|^7.0" + }, + "require-dev": { + "orchestra/testbench": "^7.0|^8.0|^9.0", + "phpstan/phpstan": "^1.10" + }, + "bin": [ + "bin/sail" + ], + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Sail\\SailServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Docker files for running a basic Laravel application.", + "keywords": [ + "docker", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/sail/issues", + "source": "https://github.com/laravel/sail" + }, + "time": "2024-08-02T07:45:47+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.6.12", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "^2.0.1", + "lib-pcre": ">=7.0", + "php": ">=7.3" + }, + "conflict": { + "phpunit/phpunit": "<8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.6.17", + "symplify/easy-coding-standard": "^12.1.14" + }, + "type": "library", + "autoload": { + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], + "psr-4": { + "Mockery\\": "library/Mockery" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "https://github.com/padraic", + "role": "Author" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "https://davedevelopment.co.uk", + "role": "Developer" + }, + { + "name": "Nathanael Esayeas", + "email": "nathanael.esayeas@protonmail.com", + "homepage": "https://github.com/ghostwriter", + "role": "Lead Developer" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "support": { + "docs": "https://docs.mockery.io/", + "issues": "https://github.com/mockery/mockery/issues", + "rss": "https://github.com/mockery/mockery/releases.atom", + "security": "https://github.com/mockery/mockery/security/advisories", + "source": "https://github.com/mockery/mockery" + }, + "time": "2024-05-16T03:13:13+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.12.0", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2024-06-12T14:39:25+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v7.10.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "49ec67fa7b002712da8526678abd651c09f375b2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/49ec67fa7b002712da8526678abd651c09f375b2", + "reference": "49ec67fa7b002712da8526678abd651c09f375b2", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.15.3", + "nunomaduro/termwind": "^1.15.1", + "php": "^8.1.0", + "symfony/console": "^6.3.4" + }, + "conflict": { + "laravel/framework": ">=11.0.0" + }, + "require-dev": { + "brianium/paratest": "^7.3.0", + "laravel/framework": "^10.28.0", + "laravel/pint": "^1.13.3", + "laravel/sail": "^1.25.0", + "laravel/sanctum": "^3.3.1", + "laravel/tinker": "^2.8.2", + "nunomaduro/larastan": "^2.6.4", + "orchestra/testbench-core": "^8.13.0", + "pestphp/pest": "^2.23.2", + "phpunit/phpunit": "^10.4.1", + "sebastian/environment": "^6.0.1", + "spatie/laravel-ignition": "^2.3.1" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2023-10-11T15:45:01+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "10.1.15", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "5da8b1728acd1e6ffdf2ff32ffbdfd04307f26ae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/5da8b1728acd1e6ffdf2ff32ffbdfd04307f26ae", + "reference": "5da8b1728acd1e6ffdf2ff32ffbdfd04307f26ae", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=8.1", + "phpunit/php-file-iterator": "^4.0", + "phpunit/php-text-template": "^3.0", + "sebastian/code-unit-reverse-lookup": "^3.0", + "sebastian/complexity": "^3.0", + "sebastian/environment": "^6.0", + "sebastian/lines-of-code": "^2.0", + "sebastian/version": "^4.0", + "theseer/tokenizer": "^1.2.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.1" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "10.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.15" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-06-29T08:25:15+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "4.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T06:24:48+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:56:09+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T14:07:24+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:57:52+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "10.5.30", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "b15524febac0153876b4ba9aab3326c2ee94c897" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b15524febac0153876b4ba9aab3326c2ee94c897", + "reference": "b15524febac0153876b4ba9aab3326c2ee94c897", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.12.0", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.1", + "phpunit/php-code-coverage": "^10.1.15", + "phpunit/php-file-iterator": "^4.1.0", + "phpunit/php-invoker": "^4.0.0", + "phpunit/php-text-template": "^3.0.1", + "phpunit/php-timer": "^6.0.0", + "sebastian/cli-parser": "^2.0.1", + "sebastian/code-unit": "^2.0.0", + "sebastian/comparator": "^5.0.2", + "sebastian/diff": "^5.1.1", + "sebastian/environment": "^6.1.0", + "sebastian/exporter": "^5.1.2", + "sebastian/global-state": "^6.0.2", + "sebastian/object-enumerator": "^5.0.0", + "sebastian/recursion-context": "^5.0.0", + "sebastian/type": "^4.0.0", + "sebastian/version": "^4.0.1" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "10.5-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.30" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2024-08-13T06:09:37+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084", + "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:12:49+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:58:43+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:59:15+00:00" + }, + { + "name": "sebastian/comparator", + "version": "5.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "2d3e04c3b4c1e84a5e7382221ad8883c8fbc4f53" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2d3e04c3b4c1e84a5e7382221ad8883c8fbc4f53", + "reference": "2d3e04c3b4c1e84a5e7382221ad8883c8fbc4f53", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/diff": "^5.0", + "sebastian/exporter": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-08-12T06:03:08+00:00" + }, + { + "name": "sebastian/complexity", + "version": "3.2.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "68ff824baeae169ec9f2137158ee529584553799" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799", + "reference": "68ff824baeae169ec9f2137158ee529584553799", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-21T08:37:17+00:00" + }, + { + "name": "sebastian/diff", + "version": "5.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e", + "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0", + "symfony/process": "^6.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:15:17+00:00" + }, + { + "name": "sebastian/environment", + "version": "6.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984", + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "https://github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-23T08:47:14+00:00" + }, + { + "name": "sebastian/exporter", + "version": "5.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "955288482d97c19a372d3f31006ab3f37da47adf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf", + "reference": "955288482d97c19a372d3f31006ab3f37da47adf", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:17:12+00:00" + }, + { + "name": "sebastian/global-state", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9", + "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:19:19+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0", + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-21T08:38:20+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:08:32+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:06:18+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:05:40+00:00" + }, + { + "name": "sebastian/type", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:10:45+00:00" + }, + { + "name": "sebastian/version", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-07T11:34:05+00:00" + }, + { + "name": "spatie/backtrace", + "version": "1.6.2", + "source": { + "type": "git", + "url": "https://github.com/spatie/backtrace.git", + "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/1a9a145b044677ae3424693f7b06479fc8c137a9", + "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "ext-json": "*", + "laravel/serializable-closure": "^1.3", + "phpunit/phpunit": "^9.3", + "spatie/phpunit-snapshot-assertions": "^4.2", + "symfony/var-dumper": "^5.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Backtrace\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van de Herten", + "email": "freek@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "A better backtrace", + "homepage": "https://github.com/spatie/backtrace", + "keywords": [ + "Backtrace", + "spatie" + ], + "support": { + "source": "https://github.com/spatie/backtrace/tree/1.6.2" + }, + "funding": [ + { + "url": "https://github.com/sponsors/spatie", + "type": "github" + }, + { + "url": "https://spatie.be/open-source/support-us", + "type": "other" + } + ], + "time": "2024-07-22T08:21:24+00:00" + }, + { + "name": "spatie/error-solutions", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/error-solutions.git", + "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/error-solutions/zipball/ae7393122eda72eed7cc4f176d1e96ea444f2d67", + "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "illuminate/broadcasting": "^10.0|^11.0", + "illuminate/cache": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", + "livewire/livewire": "^2.11|^3.3.5", + "openai-php/client": "^0.10.1", + "orchestra/testbench": "^7.0|8.22.3|^9.0", + "pestphp/pest": "^2.20", + "phpstan/phpstan": "^1.11", + "psr/simple-cache": "^3.0", + "psr/simple-cache-implementation": "^3.0", + "spatie/ray": "^1.28", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "legacy/ignition", + "Spatie\\ErrorSolutions\\": "src", + "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ruben Van Assche", + "email": "ruben@spatie.be", + "role": "Developer" + } + ], + "description": "This is my package error-solutions", + "homepage": "https://github.com/spatie/error-solutions", + "keywords": [ + "error-solutions", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/error-solutions/issues", + "source": "https://github.com/spatie/error-solutions/tree/1.1.1" + }, + "funding": [ + { + "url": "https://github.com/Spatie", + "type": "github" + } + ], + "time": "2024-07-25T11:06:04+00:00" + }, + { + "name": "spatie/flare-client-php", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/flare-client-php.git", + "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122", + "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122", + "shasum": "" + }, + "require": { + "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0", + "php": "^8.0", + "spatie/backtrace": "^1.6.1", + "symfony/http-foundation": "^5.2|^6.0|^7.0", + "symfony/mime": "^5.2|^6.0|^7.0", + "symfony/process": "^5.2|^6.0|^7.0", + "symfony/var-dumper": "^5.2|^6.0|^7.0" + }, + "require-dev": { + "dms/phpunit-arraysubset-asserts": "^0.5.0", + "pestphp/pest": "^1.20|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "spatie/pest-plugin-snapshots": "^1.0|^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.3.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\FlareClient\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Send PHP errors to Flare", + "homepage": "https://github.com/spatie/flare-client-php", + "keywords": [ + "exception", + "flare", + "reporting", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/flare-client-php/issues", + "source": "https://github.com/spatie/flare-client-php/tree/1.8.0" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-08-01T08:27:26+00:00" + }, + { + "name": "spatie/ignition", + "version": "1.15.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/ignition.git", + "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2", + "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "php": "^8.0", + "spatie/error-solutions": "^1.0", + "spatie/flare-client-php": "^1.7", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "require-dev": { + "illuminate/cache": "^9.52|^10.0|^11.0", + "mockery/mockery": "^1.4", + "pestphp/pest": "^1.20|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "psr/simple-cache-implementation": "*", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.5.x-dev" + } + }, + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for PHP applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/ignition/issues", + "source": "https://github.com/spatie/ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-06-12T14:55:22+00:00" + }, + { + "name": "spatie/laravel-ignition", + "version": "2.8.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-ignition.git", + "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/3c067b75bfb50574db8f7e2c3978c65eed71126c", + "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "illuminate/support": "^10.0|^11.0", + "php": "^8.1", + "spatie/ignition": "^1.15", + "symfony/console": "^6.2.3|^7.0", + "symfony/var-dumper": "^6.2.3|^7.0" + }, + "require-dev": { + "livewire/livewire": "^2.11|^3.3.5", + "mockery/mockery": "^1.5.1", + "openai-php/client": "^0.8.1", + "orchestra/testbench": "8.22.3|^9.0", + "pestphp/pest": "^2.34", + "phpstan/extension-installer": "^1.3.1", + "phpstan/phpstan-deprecation-rules": "^1.1.1", + "phpstan/phpstan-phpunit": "^1.3.16", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Spatie\\LaravelIgnition\\IgnitionServiceProvider" + ], + "aliases": { + "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare" + } + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\LaravelIgnition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for Laravel applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/laravel-ignition/issues", + "source": "https://github.com/spatie/laravel-ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-06-12T15:01:18+00:00" + }, + { + "name": "symfony/yaml", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "52903de178d542850f6f341ba92995d3d63e60c9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/52903de178d542850f6f341ba92995d3d63e60c9", + "reference": "52903de178d542850f6f341ba92995d3d63e60c9", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<5.4" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^7.0" + }, + "bin": [ + "Resources/bin/yaml-lint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v6.4.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:49:08+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:36:25+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^8.1" + }, + "platform-dev": [], + "plugin-api-version": "2.6.0" +} diff --git a/config/app.php b/config/app.php new file mode 100644 index 0000000..bca112f --- /dev/null +++ b/config/app.php @@ -0,0 +1,215 @@ + env('APP_NAME', 'Laravel'), + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. Set this in your ".env" file. + | + */ + + 'env' => env('APP_ENV', 'production'), + + /* + |-------------------------------------------------------------------------- + | Application Debug Mode + |-------------------------------------------------------------------------- + | + | When your application is in debug mode, detailed error messages with + | stack traces will be shown on every error that occurs within your + | application. If disabled, a simple generic error page is shown. + | + */ + + 'debug' => (bool) env('APP_DEBUG', false), + + /* + |-------------------------------------------------------------------------- + | Application URL + |-------------------------------------------------------------------------- + | + | This URL is used by the console to properly generate URLs when using + | the Artisan command line tool. You should set this to the root of + | your application so that it is used when running Artisan tasks. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + 'asset_url' => env('ASSET_URL', '/'), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. We have gone + | ahead and set this to a sensible default for you out of the box. + | + */ + + 'timezone' => 'UTC', + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by the translation service provider. You are free to set this value + | to any of the locales which will be supported by the application. + | + */ + + 'locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Application Fallback Locale + |-------------------------------------------------------------------------- + | + | The fallback locale determines the locale to use when the current one + | is not available. You may change the value to correspond to any of + | the language folders that are provided through your application. + | + */ + + 'fallback_locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Faker Locale + |-------------------------------------------------------------------------- + | + | This locale will be used by the Faker PHP library when generating fake + | data for your database seeds. For example, this will be used to get + | localized telephone numbers, street address information and more. + | + */ + + 'faker_locale' => 'en_US', + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is used by the Illuminate encrypter service and should be set + | to a random, 32 character string, otherwise these encrypted strings + | will not be safe. Please do this before deploying an application! + | + */ + + 'key' => env('APP_KEY'), + + 'cipher' => 'AES-256-CBC', + + /* + |-------------------------------------------------------------------------- + | Maintenance Mode Driver + |-------------------------------------------------------------------------- + | + | These configuration options determine the driver used to determine and + | manage Laravel's "maintenance mode" status. The "cache" driver will + | allow maintenance mode to be controlled across multiple machines. + | + | Supported drivers: "file", "cache" + | + */ + + 'maintenance' => [ + 'driver' => 'file', + // 'store' => 'redis', + ], + + /* + |-------------------------------------------------------------------------- + | Autoloaded Service Providers + |-------------------------------------------------------------------------- + | + | The service providers listed here will be automatically loaded on the + | request to your application. Feel free to add your own services to + | this array to grant expanded functionality to your applications. + | + */ + + 'providers' => [ + + /* + * Laravel Framework Service Providers... + */ + Illuminate\Auth\AuthServiceProvider::class, + Illuminate\Broadcasting\BroadcastServiceProvider::class, + Illuminate\Bus\BusServiceProvider::class, + Illuminate\Cache\CacheServiceProvider::class, + Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, + Illuminate\Cookie\CookieServiceProvider::class, + Illuminate\Database\DatabaseServiceProvider::class, + Illuminate\Encryption\EncryptionServiceProvider::class, + Illuminate\Filesystem\FilesystemServiceProvider::class, + Illuminate\Foundation\Providers\FoundationServiceProvider::class, + Illuminate\Hashing\HashServiceProvider::class, + Illuminate\Mail\MailServiceProvider::class, + Illuminate\Notifications\NotificationServiceProvider::class, + Illuminate\Pagination\PaginationServiceProvider::class, + Illuminate\Pipeline\PipelineServiceProvider::class, + Illuminate\Queue\QueueServiceProvider::class, + Illuminate\Redis\RedisServiceProvider::class, + Illuminate\Auth\Passwords\PasswordResetServiceProvider::class, + Illuminate\Session\SessionServiceProvider::class, + Illuminate\Translation\TranslationServiceProvider::class, + Illuminate\Validation\ValidationServiceProvider::class, + Illuminate\View\ViewServiceProvider::class, + + /* + * Package Service Providers... + */ + + /* + * Application Service Providers... + */ + App\Providers\AppServiceProvider::class, + App\Providers\AuthServiceProvider::class, + // App\Providers\BroadcastServiceProvider::class, + App\Providers\EventServiceProvider::class, + App\Providers\RouteServiceProvider::class, + + ], + + /* + |-------------------------------------------------------------------------- + | Class Aliases + |-------------------------------------------------------------------------- + | + | This array of class aliases will be registered when this application + | is started. However, feel free to register as many as you wish as + | the aliases are "lazy" loaded so they don't hinder performance. + | + */ + + 'aliases' => Facade::defaultAliases()->merge([ + // 'ExampleClass' => App\Example\ExampleClass::class, + ])->toArray(), + +]; diff --git a/config/auth.php b/config/auth.php new file mode 100644 index 0000000..cae0028 --- /dev/null +++ b/config/auth.php @@ -0,0 +1,115 @@ + [ + 'guard' => 'web', + 'passwords' => 'users', + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | here which uses session storage and the Eloquent user provider. + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | If you have multiple user tables or models you may configure multiple + | sources which represent each model / table. These sources may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => App\Models\User::class, + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | You may specify multiple password reset configurations if you have more + | than one user table or model in the application and you want to have + | separate password reset settings based on the specific user types. + | + | The expire time is the number of minutes that each reset token will be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + | The throttle setting is the number of seconds a user must wait before + | generating more password reset tokens. This prevents the user from + | quickly generating a very large amount of password reset tokens. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => 'password_reset_tokens', + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | times out and the user is prompted to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => 10800, + +]; diff --git a/config/broadcasting.php b/config/broadcasting.php new file mode 100644 index 0000000..9e4d4aa --- /dev/null +++ b/config/broadcasting.php @@ -0,0 +1,70 @@ + env('BROADCAST_DRIVER', 'null'), + + /* + |-------------------------------------------------------------------------- + | Broadcast Connections + |-------------------------------------------------------------------------- + | + | Here you may define all of the broadcast connections that will be used + | to broadcast events to other systems or over websockets. Samples of + | each available type of connection are provided inside this array. + | + */ + + 'connections' => [ + + 'pusher' => [ + 'driver' => 'pusher', + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', + 'port' => env('PUSHER_PORT', 443), + 'scheme' => env('PUSHER_SCHEME', 'https'), + 'encrypted' => true, + 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', + ], + 'client_options' => [ + // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html + ], + ], + + 'ably' => [ + 'driver' => 'ably', + 'key' => env('ABLY_KEY'), + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + ], + + 'log' => [ + 'driver' => 'log', + ], + + 'null' => [ + 'driver' => 'null', + ], + + ], + +]; diff --git a/config/cache.php b/config/cache.php new file mode 100644 index 0000000..33bb295 --- /dev/null +++ b/config/cache.php @@ -0,0 +1,110 @@ + env('CACHE_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + | Supported drivers: "apc", "array", "database", "file", + | "memcached", "redis", "dynamodb", "octane", "null" + | + */ + + 'stores' => [ + + 'apc' => [ + 'driver' => 'apc', + ], + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'cache', + 'connection' => null, + 'lock_connection' => null, + ], + + 'file' => [ + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), + ], + + 'memcached' => [ + 'driver' => 'memcached', + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), + 'sasl' => [ + env('MEMCACHED_USERNAME'), + env('MEMCACHED_PASSWORD'), + ], + 'options' => [ + // Memcached::OPT_CONNECT_TIMEOUT => 2000, + ], + 'servers' => [ + [ + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('MEMCACHED_PORT', 11211), + 'weight' => 100, + ], + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'cache', + 'lock_connection' => 'default', + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + 'octane' => [ + 'driver' => 'octane', + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing the APC, database, memcached, Redis, or DynamoDB cache + | stores there might be other applications using the same cache. For + | that reason, you may prefix every cache key to avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), + +]; diff --git a/config/cors.php b/config/cors.php new file mode 100644 index 0000000..8a39e6d --- /dev/null +++ b/config/cors.php @@ -0,0 +1,34 @@ + ['api/*', 'sanctum/csrf-cookie'], + + 'allowed_methods' => ['*'], + + 'allowed_origins' => ['*'], + + 'allowed_origins_patterns' => [], + + 'allowed_headers' => ['*'], + + 'exposed_headers' => [], + + 'max_age' => 0, + + 'supports_credentials' => false, + +]; diff --git a/config/database.php b/config/database.php new file mode 100644 index 0000000..137ad18 --- /dev/null +++ b/config/database.php @@ -0,0 +1,151 @@ + env('DB_CONNECTION', 'mysql'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Here are each of the database connections setup for your application. + | Of course, examples of configuring each database platform that is + | supported by Laravel is shown below to make development simple. + | + | + | All database work in Laravel is done through the PHP PDO facilities + | so make sure you have the driver for your particular database of + | choice installed on your machine before you begin development. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DATABASE_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => 'utf8mb4', + 'collation' => 'utf8mb4_unicode_ci', + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + 'search_path' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + // 'encrypt' => env('DB_ENCRYPT', 'yes'), + // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run in the database. + | + */ + + 'migrations' => 'migrations', + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as APC or Memcached. Laravel makes it easy to dig right in. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/config/filesystems.php b/config/filesystems.php new file mode 100644 index 0000000..e9d9dbd --- /dev/null +++ b/config/filesystems.php @@ -0,0 +1,76 @@ + env('FILESYSTEM_DISK', 'local'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Here you may configure as many filesystem "disks" as you wish, and you + | may even configure multiple disks of the same driver. Defaults have + | been set up for each driver as an example of the required values. + | + | Supported Drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app'), + 'throw' => false, + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + 'throw' => false, + ], + + 's3' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + 'throw' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure the symbolic links that will be created when the + | `storage:link` Artisan command is executed. The array keys should be + | the locations of the links and the values should be their targets. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], + +]; diff --git a/config/hashing.php b/config/hashing.php new file mode 100644 index 0000000..bcd3be4 --- /dev/null +++ b/config/hashing.php @@ -0,0 +1,52 @@ + 'bcrypt', + + /* + |-------------------------------------------------------------------------- + | Bcrypt Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Bcrypt algorithm. This will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'bcrypt' => [ + 'rounds' => env('BCRYPT_ROUNDS', 10), + ], + + /* + |-------------------------------------------------------------------------- + | Argon Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Argon algorithm. These will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'argon' => [ + 'memory' => 65536, + 'threads' => 1, + 'time' => 4, + ], + +]; diff --git a/config/logging.php b/config/logging.php new file mode 100644 index 0000000..5aa1dbb --- /dev/null +++ b/config/logging.php @@ -0,0 +1,122 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Deprecations Log Channel + |-------------------------------------------------------------------------- + | + | This option controls the log channel that should be used to log warnings + | regarding deprecated PHP and library features. This allows you to get + | your application ready for upcoming major versions of dependencies. + | + */ + + 'deprecations' => [ + 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), + 'trace' => false, + ], + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Out of + | the box, Laravel uses the Monolog PHP logging library. This gives + | you a variety of powerful log handlers / formatters to utilize. + | + | Available Drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", + | "custom", "stack" + | + */ + + 'channels' => [ + 'stack' => [ + 'driver' => 'stack', + 'channels' => ['single'], + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'days' => 14, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => 'Laravel Log', + 'emoji' => ':boom:', + 'level' => env('LOG_LEVEL', 'critical'), + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), + ], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => StreamHandler::class, + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'with' => [ + 'stream' => 'php://stderr', + ], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => env('LOG_LEVEL', 'debug'), + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => env('LOG_LEVEL', 'debug'), + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + ], + +]; diff --git a/config/mail.php b/config/mail.php new file mode 100644 index 0000000..049052f --- /dev/null +++ b/config/mail.php @@ -0,0 +1,124 @@ + env('MAIL_MAILER', 'smtp'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers to be used while + | sending an e-mail. You will specify which one you are using for your + | mailers below. You are free to add additional mailers as required. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", + | "postmark", "log", "array", "failover" + | + */ + + 'mailers' => [ + 'smtp' => [ + 'transport' => 'smtp', + 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), + 'port' => env('MAIL_PORT', 587), + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN'), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'mailgun' => [ + 'transport' => 'mailgun', + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'postmark' => [ + 'transport' => 'postmark', + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'sendmail' => [ + 'transport' => 'sendmail', + 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + + 'failover' => [ + 'transport' => 'failover', + 'mailers' => [ + 'smtp', + 'log', + ], + ], + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all e-mails sent by your application to be sent from + | the same address. Here, you may specify a name and address that is + | used globally for all e-mails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + + /* + |-------------------------------------------------------------------------- + | Markdown Mail Settings + |-------------------------------------------------------------------------- + | + | If you are using Markdown based email rendering, you may configure your + | theme and component paths here, allowing you to customize the design + | of the emails. Or, you may simply stick with the Laravel defaults! + | + */ + + 'markdown' => [ + 'theme' => 'default', + + 'paths' => [ + resource_path('views/vendor/mail'), + ], + ], + +]; diff --git a/config/queue.php b/config/queue.php new file mode 100644 index 0000000..25ea5a8 --- /dev/null +++ b/config/queue.php @@ -0,0 +1,93 @@ + env('QUEUE_CONNECTION', 'sync'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection information for each server that + | is used by your application. A default configuration has been added + | for each back-end shipped with Laravel. You are free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'jobs', + 'queue' => 'default', + 'retry_after' => 90, + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => 'localhost', + 'queue' => 'default', + 'retry_after' => 90, + 'block_for' => 0, + 'after_commit' => false, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'default'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'after_commit' => false, + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => 90, + 'block_for' => null, + 'after_commit' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control which database and table are used to store the jobs that + | have failed. You may change them to any database / table you wish. + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/config/sanctum.php b/config/sanctum.php new file mode 100644 index 0000000..529cfdc --- /dev/null +++ b/config/sanctum.php @@ -0,0 +1,67 @@ + explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( + '%s%s', + 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1', + Sanctum::currentApplicationUrlWithPort() + ))), + + /* + |-------------------------------------------------------------------------- + | Sanctum Guards + |-------------------------------------------------------------------------- + | + | This array contains the authentication guards that will be checked when + | Sanctum is trying to authenticate a request. If none of these guards + | are able to authenticate the request, Sanctum will use the bearer + | token that's present on an incoming request for authentication. + | + */ + + 'guard' => ['web'], + + /* + |-------------------------------------------------------------------------- + | Expiration Minutes + |-------------------------------------------------------------------------- + | + | This value controls the number of minutes until an issued token will be + | considered expired. If this value is null, personal access tokens do + | not expire. This won't tweak the lifetime of first-party sessions. + | + */ + + 'expiration' => null, + + /* + |-------------------------------------------------------------------------- + | Sanctum Middleware + |-------------------------------------------------------------------------- + | + | When authenticating your first-party SPA with Sanctum you may need to + | customize some of the middleware Sanctum uses while processing the + | request. You may change the middleware listed below as required. + | + */ + + 'middleware' => [ + 'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class, + 'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class, + ], + +]; diff --git a/config/services.php b/config/services.php new file mode 100644 index 0000000..0ace530 --- /dev/null +++ b/config/services.php @@ -0,0 +1,34 @@ + [ + 'domain' => env('MAILGUN_DOMAIN'), + 'secret' => env('MAILGUN_SECRET'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), + 'scheme' => 'https', + ], + + 'postmark' => [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + +]; diff --git a/config/session.php b/config/session.php new file mode 100644 index 0000000..8fed97c --- /dev/null +++ b/config/session.php @@ -0,0 +1,201 @@ + env('SESSION_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to immediately expire on the browser closing, set that option. + | + */ + + 'lifetime' => env('SESSION_LIFETIME', 120), + + 'expire_on_close' => false, + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it is stored. All encryption will be run + | automatically by Laravel and you can use the Session like normal. + | + */ + + 'encrypt' => false, + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When using the native session driver, we need a location where session + | files may be stored. A default has been set for you but a different + | location may be specified. This is only needed for file sessions. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION'), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table we + | should use to manage the sessions. Of course, a sensible default is + | provided for you; however, you are free to change this as needed. + | + */ + + 'table' => 'sessions', + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | While using one of the framework's cache driven session backends you may + | list a cache store that should be used for these sessions. This value + | must match with one of the application's configured cache "stores". + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE'), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the cookie used to identify a session + | instance by ID. The name specified here will get used every time a + | new session cookie is created by the framework for every driver. + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_').'_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application but you are free to change this when necessary. + | + */ + + 'path' => '/', + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | Here you may change the domain of the cookie used to identify a session + | in your application. This will determine which domains the cookie is + | available to in your application. A sensible default has been set. + | + */ + + 'domain' => env('SESSION_DOMAIN'), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you when it can't be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. You are free to modify this option if needed. + | + */ + + 'http_only' => true, + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" since this is a secure default value. + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => 'lax', + +]; diff --git a/config/view.php b/config/view.php new file mode 100644 index 0000000..22b8a18 --- /dev/null +++ b/config/view.php @@ -0,0 +1,36 @@ + [ + resource_path('views'), + ], + + /* + |-------------------------------------------------------------------------- + | Compiled View Path + |-------------------------------------------------------------------------- + | + | This option determines where all the compiled Blade templates will be + | stored for your application. Typically, this is within the storage + | directory. However, as usual, you are free to change this value. + | + */ + + 'compiled' => env( + 'VIEW_COMPILED_PATH', + realpath(storage_path('framework/views')) + ), + +]; diff --git a/database/.gitignore b/database/.gitignore new file mode 100644 index 0000000..9b19b93 --- /dev/null +++ b/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php new file mode 100644 index 0000000..d4e8835 --- /dev/null +++ b/database/factories/UserFactory.php @@ -0,0 +1,40 @@ + + */ +class UserFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + 'name' => fake()->name(), + 'email' => fake()->unique()->safeEmail(), + 'email_verified_at' => now(), + 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password + 'remember_token' => Str::random(10), + ]; + } + + /** + * Indicate that the model's email address should be unverified. + * + * @return $this + */ + public function unverified(): static + { + return $this->state(fn (array $attributes) => [ + 'email_verified_at' => null, + ]); + } +} diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php new file mode 100644 index 0000000..8d68b6c --- /dev/null +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -0,0 +1,35 @@ +id(); + $table->string('name'); + $table->string('email')->unique(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('password'); + $table->enum('role',['admin','user']) + ->default('user'); + $table->enum('status', ['active', 'inactive'])->default('active'); + $table->rememberToken(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('users'); + } +}; diff --git a/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php new file mode 100644 index 0000000..ed21fee --- /dev/null +++ b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php @@ -0,0 +1,28 @@ +string('token')->primary(); + $table->string('email'); + $table->timestamp('created_at')->nullable(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('password_reset_tokens'); + } +}; \ No newline at end of file diff --git a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file mode 100644 index 0000000..249da81 --- /dev/null +++ b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php @@ -0,0 +1,32 @@ +id(); + $table->string('uuid')->unique(); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('failed_jobs'); + } +}; diff --git a/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file mode 100644 index 0000000..e828ad8 --- /dev/null +++ b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php @@ -0,0 +1,33 @@ +id(); + $table->morphs('tokenable'); + $table->string('name'); + $table->string('token', 64)->unique(); + $table->text('abilities')->nullable(); + $table->timestamp('last_used_at')->nullable(); + $table->timestamp('expires_at')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('personal_access_tokens'); + } +}; diff --git a/database/migrations/2023_10_01_123456_create_alternatives_table.php b/database/migrations/2023_10_01_123456_create_alternatives_table.php new file mode 100644 index 0000000..0bc0a77 --- /dev/null +++ b/database/migrations/2023_10_01_123456_create_alternatives_table.php @@ -0,0 +1,26 @@ +id(); + $table->string('name'); + $table->string('jenis'); // Menambahkan kolom jenis + $table->string('bahan_utama'); // Menambahkan kolom bahan utama + $table->decimal('harga', 10, 2); // Menambahkan kolom harga + // $table->string('ketersediaan'); // Menambahkan kolom ketersediaan + $table->timestamps(); + }); + } + + public function down() + { + Schema::dropIfExists('alternatives'); + } +} diff --git a/database/migrations/2024_08_17_072508_create_categories_table.php b/database/migrations/2024_08_17_072508_create_categories_table.php new file mode 100644 index 0000000..b86b7b1 --- /dev/null +++ b/database/migrations/2024_08_17_072508_create_categories_table.php @@ -0,0 +1,28 @@ +id(); + $table->string('name'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('categories'); + } +}; diff --git a/database/migrations/2024_08_21_185754_create_posts_table.php b/database/migrations/2024_08_21_185754_create_posts_table.php new file mode 100644 index 0000000..2b7cb76 --- /dev/null +++ b/database/migrations/2024_08_21_185754_create_posts_table.php @@ -0,0 +1,39 @@ +id(); + $table->string('title'); + $table->text('description'); + $table->enum('status_published', ['active', 'inactive'])->default('inactive'); + $table->enum('status', ['published', 'pending', 'rejected'])->default('pending'); + $table->unsignedBigInteger('user_id'); + $table->timestamps(); + }); + + // Tambahkan foreign key untuk user_id + Schema::table('posts', function (Blueprint $table) { // Pastikan nama tabelnya 'posts' + $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); + }); +} + + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('posts_'); + } +}; diff --git a/database/migrations/2024_08_21_190359_create_post_categories_table.php b/database/migrations/2024_08_21_190359_create_post_categories_table.php new file mode 100644 index 0000000..986236e --- /dev/null +++ b/database/migrations/2024_08_21_190359_create_post_categories_table.php @@ -0,0 +1,35 @@ +id(); + $table->unsignedBigInteger('post_id'); + $table->unsignedBigInteger('category_id'); // Mengganti categories_id menjadi category_id + $table->timestamps(); + }); + + Schema::table('post_categories', function (Blueprint $table) { + $table->foreign('post_id')->references('id')->on('posts')->onDelete('cascade'); + $table->foreign('category_id')->references('id')->on('categories')->onDelete('cascade'); // Mengganti categories_id menjadi category_id + }); + } + + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('post_categories'); + } +}; diff --git a/database/migrations/2025_05_07_042012_create_kriterias_table.php b/database/migrations/2025_05_07_042012_create_kriterias_table.php new file mode 100644 index 0000000..cc35de6 --- /dev/null +++ b/database/migrations/2025_05_07_042012_create_kriterias_table.php @@ -0,0 +1,30 @@ +id(); + $table->string('nama'); + $table->float('bobot'); + $table->enum('tipe', ['benefit', 'cost']); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('kriterias'); + } +}; diff --git a/database/migrations/2025_05_07_045550_create_penilaians_table.php b/database/migrations/2025_05_07_045550_create_penilaians_table.php new file mode 100644 index 0000000..05066c5 --- /dev/null +++ b/database/migrations/2025_05_07_045550_create_penilaians_table.php @@ -0,0 +1,27 @@ +id(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('penilaians'); + } +}; diff --git a/database/migrations/2025_05_07_051623_create_hasil_penilaian_table.php b/database/migrations/2025_05_07_051623_create_hasil_penilaian_table.php new file mode 100644 index 0000000..f46640c --- /dev/null +++ b/database/migrations/2025_05_07_051623_create_hasil_penilaian_table.php @@ -0,0 +1,26 @@ +id(); + $table->unsignedBigInteger('alternatif_id'); + $table->float('nilai_akhir'); + $table->timestamps(); + + // Jika ada relasi ke tabel alternatif + $table->foreign('alternatif_id')->references('id')->on('alternatives')->onDelete('cascade'); + }); + } + + public function down() + { + Schema::dropIfExists('hasil_penilaian'); + } +}; \ No newline at end of file diff --git a/database/migrations/2025_05_07_133611_add_columns_to_penilaians_table.php b/database/migrations/2025_05_07_133611_add_columns_to_penilaians_table.php new file mode 100644 index 0000000..7dab277 --- /dev/null +++ b/database/migrations/2025_05_07_133611_add_columns_to_penilaians_table.php @@ -0,0 +1,30 @@ +unsignedBigInteger('alternatif_id')->after('id'); + $table->unsignedBigInteger('kriteria_id')->after('alternatif_id'); + $table->float('nilai', 8, 2)->after('kriteria_id'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('penilaians', function (Blueprint $table) { + $table->dropColumn(['alternatif_id', 'kriteria_id', 'nilai']); + }); + } +}; diff --git a/database/seeders/AlternativeSeeder.php b/database/seeders/AlternativeSeeder.php new file mode 100644 index 0000000..c45a699 --- /dev/null +++ b/database/seeders/AlternativeSeeder.php @@ -0,0 +1,49 @@ + 'Pupuk Kompos', + 'jenis' => 'Padat', + 'bahan_utama' => 'Jerami Padi', + 'harga' => 15000, + ]); + + Alternative::create([ + 'name' => 'Pupuk Kandang', + 'jenis' => 'Padat', + 'bahan_utama' => 'Kotoran Sapi', + 'harga' => 16000, + ]); + + Alternative::create([ + 'name' => 'Pupuk Hijau', + 'jenis' => 'Cair', + 'bahan_utama' => 'Daun Hijau', + 'harga' => 20000, + ]); + + Alternative::create([ + 'name' => 'Pupuk Organik Cair', + 'jenis' => 'Cair', + 'bahan_utama' => 'Kotoran Cacing', + 'harga' => 50000, + ]); + + Alternative::create([ + 'name' => 'Humus', + 'jenis' => 'Padat', + 'bahan_utama' => 'Tanah', + 'harga' => 3000, + ]); + + // Tambahkan data lainnya sesuai kebutuhan + } +} \ No newline at end of file diff --git a/database/seeders/BlogSeeder.php b/database/seeders/BlogSeeder.php new file mode 100644 index 0000000..73cc3a3 --- /dev/null +++ b/database/seeders/BlogSeeder.php @@ -0,0 +1,35 @@ + 'Blog Post 1', + 'kategori' => 'Technology', + 'deskripsi' => 'This is a description for the first blog post.', + ], + [ + 'title' => 'Blog Post 2', + 'kategori' => 'Health', + 'deskripsi' => 'This is a description for the second blog post.', + + ], + [ + 'title' => 'Blog Post 3', + 'kategori' => 'Lifestyle', + 'deskripsi' => 'This is a description for the third blog post.', + + ] + ]; + + }} \ No newline at end of file diff --git a/database/seeders/CategorySeeder.php b/database/seeders/CategorySeeder.php new file mode 100644 index 0000000..20ae0bf --- /dev/null +++ b/database/seeders/CategorySeeder.php @@ -0,0 +1,28 @@ + 'Teknologi', + ], + [ + 'name' => 'Kuliner', + ], + ]; + foreach($dataCategory as $val) { + Category::create($val); + } + +}} diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php new file mode 100644 index 0000000..fda1f26 --- /dev/null +++ b/database/seeders/DatabaseSeeder.php @@ -0,0 +1,13 @@ +call(KriteriasTableSeeder::class); + } +} diff --git a/database/seeders/KriteriasTableSeeder.php b/database/seeders/KriteriasTableSeeder.php new file mode 100644 index 0000000..65e54eb --- /dev/null +++ b/database/seeders/KriteriasTableSeeder.php @@ -0,0 +1,43 @@ +insert([ + [ + 'nama' => 'Kandungan Nitrogen (N)', + 'bobot' => 0.40, + 'tipe' => 'benefit', + 'created_at' => now(), + 'updated_at' => now() + ], + [ + 'nama' => 'Kandungan Fosfor (F)', + 'bobot' => 0.20, + 'tipe' => 'benefit', + 'created_at' => now(), + 'updated_at' => now() + ], + [ + 'nama' => 'Kandungan Kalium (k)', + 'bobot' => 0.25, + 'tipe' => 'benefit', + 'created_at' => now(), + 'updated_at' => now() + ], + [ + 'nama' => 'Harga', + 'bobot' => 0.15, + 'tipe' => 'cost', + 'created_at' => now(), + 'updated_at' => now() + ], + ]); + } +} \ No newline at end of file diff --git a/database/seeders/UserSeeder.php b/database/seeders/UserSeeder.php new file mode 100644 index 0000000..6382e97 --- /dev/null +++ b/database/seeders/UserSeeder.php @@ -0,0 +1,30 @@ + 'Admin', + 'email' => 'admin@gmail.com', + 'role' => 'admin', + 'password' => bcrypt('123456'), + ], + [ + 'name' => 'Author', + 'email' => 'author@gmail.com', + 'role' => 'user', + 'password' => bcrypt('123456'), + ], + ]; + foreach($userData as $val) { + User::create($val); + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..3a76ed0 --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "private": true, + "scripts": { + "dev": "vite", + "build": "vite build" + }, + "devDependencies": { + "axios": "^1.1.2", + "laravel-vite-plugin": "^0.7.2", + "vite": "^4.0.0" + } +} diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..eb13aff --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,31 @@ + + + + + ./tests/Unit + + + ./tests/Feature + + + + + ./app + + + + + + + + + + + + + + diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..3aec5e2 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,21 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + diff --git a/public/asset/css/cs-skin-elastic.css b/public/asset/css/cs-skin-elastic.css new file mode 100644 index 0000000..b3501bd --- /dev/null +++ b/public/asset/css/cs-skin-elastic.css @@ -0,0 +1,290 @@ +@font-face { + font-family: 'icomoon'; + src:url('../fonts/icomoon/icomoon.eot?-rdnm34'); + src:url('../fonts/icomoon/icomoon.eot?#iefix-rdnm34') format('embedded-opentype'), + url('../fonts/icomoon/icomoon.woff?-rdnm34') format('woff'), + url('../fonts/icomoon/icomoon.ttf?-rdnm34') format('truetype'), + url('../fonts/icomoon/icomoon.svg?-rdnm34#icomoon') format('svg'); + font-weight: normal; + font-style: normal; +} + +div.cs-skin-elastic { + background: transparent; + font-size: 1.5em; + font-weight: 700; + color: #5b8583; +} + +@media screen and (max-width: 30em) { + div.cs-skin-elastic { font-size: 1em; } +} + +.cs-skin-elastic > span { + background-color: #fff; + z-index: 100; +} + +.cs-skin-elastic > span::after { + font-family: 'icomoon'; + content: '\e005'; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} + +.cs-skin-elastic .cs-options { + overflow: visible; + background: transparent; + opacity: 1; + visibility: visible; + padding-bottom: 1.25em; + pointer-events: none; +} + +.cs-skin-elastic.cs-active .cs-options { + pointer-events: auto; +} + +.cs-skin-elastic .cs-options > ul::before { + content: ''; + position: absolute; + width: 100%; + height: 100%; + left: 0; + top: 0; + -webkit-transform: scale3d(1,0,1); + transform: scale3d(1,0,1); + background: #fff; + -webkit-transform-origin: 50% 0%; + transform-origin: 50% 0%; + -webkit-transition: -webkit-transform 0.3s; + transition: transform 0.3s; +} + +.cs-skin-elastic.cs-active .cs-options > ul::before { + -webkit-transform: scale3d(1,1,1); + transform: scale3d(1,1,1); + -webkit-transition: none; + transition: none; + -webkit-animation: expand 0.6s ease-out; + animation: expand 0.6s ease-out; +} + +.cs-skin-elastic .cs-options ul li { + opacity: 0; + -webkit-transform: translate3d(0,-25px,0); + transform: translate3d(0,-25px,0); + -webkit-transition: opacity 0.15s, -webkit-transform 0.15s; + transition: opacity 0.15s, transform 0.15s; +} + +.cs-skin-elastic.cs-active .cs-options ul li { + -webkit-transform: translate3d(0,0,0); + transform: translate3d(0,0,0); + opacity: 1; + -webkit-transition: none; + transition: none; + -webkit-animation: bounce 0.6s ease-out; + animation: bounce 0.6s ease-out; +} + +/* Optional delays (problematic in IE 11/Win) */ +/* +.cs-skin-elastic.cs-active .cs-options ul li:first-child { + -webkit-animation-delay: 0.1s; + animation-delay: 0.1s; +} + +.cs-skin-elastic.cs-active .cs-options ul li:nth-child(2) { + -webkit-animation-delay: 0.15s; + animation-delay: 0.15s; +} + +.cs-skin-elastic.cs-active .cs-options ul li:nth-child(3) { + -webkit-animation-delay: 0.2s; + animation-delay: 0.2s; +} + +.cs-skin-elastic.cs-active .cs-options ul li:nth-child(4) { + -webkit-animation-delay: 0.25s; + animation-delay: 0.25s; +} + +/* with more items, more delays declarations are needed */ + + +.cs-skin-elastic .cs-options span { + background-repeat: no-repeat; + background-position: 1.5em 50%; + background-size: 2em auto; + padding: 0.8em 1em 0.8em 4em; +} + +.cs-skin-elastic .cs-options span:hover, +.cs-skin-elastic .cs-options li.cs-focus span, +.cs-skin-elastic .cs-options .cs-selected span { + color: #1e4c4a; +} + +.cs-skin-elastic .cs-options .cs-selected span::after { + content: ''; +} + +.cs-skin-elastic .cs-options li.flag-france span { + background-image: url(../img/france.svg); +} + +.cs-skin-elastic .cs-options li.flag-brazil span { + background-image: url(../img/brazil.svg); +} + +.cs-skin-elastic .cs-options li.flag-safrica span { + background-image: url(../img/south-africa.svg); +} + +.cs-skin-elastic .cs-options li.flag-argentina span { + background-image: url(../img/argentina.svg); +} + +@-webkit-keyframes expand { + 0% { -webkit-transform: scale3d(1,0,1); } + 25% { -webkit-transform: scale3d(1,1.2,1); } + 50% { -webkit-transform: scale3d(1,0.85,1); } + 75% { -webkit-transform: scale3d(1,1.05,1) } + 100% { -webkit-transform: scale3d(1,1,1); } +} + +@keyframes expand { + 0% { -webkit-transform: scale3d(1,0,1); transform: scale3d(1,0,1); } + 25% { -webkit-transform: scale3d(1,1.2,1); transform: scale3d(1,1.2,1); } + 50% { -webkit-transform: scale3d(1,0.85,1); transform: scale3d(1,0.85,1); } + 75% { -webkit-transform: scale3d(1,1.05,1); transform: scale3d(1,1.05,1); } + 100% { -webkit-transform: scale3d(1,1,1); transform: scale3d(1,1,1); } +} + + +@-webkit-keyframes bounce { + 0% { -webkit-transform: translate3d(0,-25px,0); opacity:0; } + 25% { -webkit-transform: translate3d(0,10px,0); } + 50% { -webkit-transform: translate3d(0,-6px,0); } + 75% { -webkit-transform: translate3d(0,2px,0); } + 100% { -webkit-transform: translate3d(0,0,0); opacity: 1; } +} + +@keyframes bounce { + 0% { -webkit-transform: translate3d(0,-25px,0); transform: translate3d(0,-25px,0); opacity:0; } + 25% { -webkit-transform: translate3d(0,10px,0); transform: translate3d(0,10px,0); } + 50% { -webkit-transform: translate3d(0,-6px,0); transform: translate3d(0,-6px,0); } + 75% { -webkit-transform: translate3d(0,2px,0); transform: translate3d(0,2px,0); } + 100% { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); opacity: 1; } +} + + +/* Default custom select styles */ +div.cs-select { + display: inline-block; + vertical-align: middle; + position: relative; + text-align: left; + background: #f1f2f7; + z-index: 100; + width: 100%; + max-width: 80px; + margin-left: 25px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.cs-select:focus { + outline: none; /* For better accessibility add a style for this in your skin */ +} + +.cs-select select { + display: none; +} + +.cs-select span { + display: block; + position: relative; + cursor: pointer; + padding: 9px 15px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +/* Placeholder and selected option */ + +.cs-select > span::after, +.cs-select .cs-selected span::after { + speak: none; + position: absolute; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.cs-select > span::after { + content: "\f107"; + font-family: 'Fontawesome'; + right: 1em; +} + +.cs-select .cs-selected span::after { + content: '\2713'; + margin-left: 1em; +} + +.cs-select.cs-active > span::after { + -webkit-transform: translateY(-50%) rotate(180deg); + transform: translateY(-50%) rotate(180deg); +} + +div.cs-active { + z-index: 200; +} + +/* Options */ +.cs-select .cs-options { + position: absolute; + overflow: hidden; + width: 100%; + background: #f1f2f7; + visibility: hidden; +} + +.cs-select.cs-active .cs-options { + visibility: visible; +} + +.cs-select ul { + list-style: none; + margin: 0; + padding: 0; + width: 100%; +} + +.cs-select ul span { + padding: 5px 15px; +} +.cs-select ul li { + display: block; +} +.cs-select ul li.cs-focus span { + background-color: #ddd; +} + +/* Optgroup and optgroup label */ +.cs-select li.cs-optgroup ul { + padding-left: 1em; +} + +.cs-select li.cs-optgroup > span { + cursor: default; +} diff --git a/public/asset/css/lib/chosen/chosen-sprite.png b/public/asset/css/lib/chosen/chosen-sprite.png new file mode 100644 index 0000000000000000000000000000000000000000..c57da70b4b5b1e08a6977ddde182677af0e5e1b8 GIT binary patch literal 538 zcmV+#0_FXQP)cz2)-WJLkv8J@4bb5L`rsE?Kc|FrXHkKz)ov z76MHYM&Apx%05P7orE!>9=yZ~6O0^V?1%{=1UASqa<2Pgnk7fs!OIs9gh{NCN+@=) z>Gfttd5uq;oeR{%NHjtqV~jEQeY?tDff=(jqx>~SZ_e+iN26HR*`0Q!Re)~HD85p> zbL()Mw}bI^#`7wp0+cv&7*LhrtOmR)?PK>(-BeLm#jL5Jfogv-QS(TBnUb;))Krqm zD}uDDeVLNhm1G*pFB`O?iA=dnWBEpqHk8Yh%Qu45EIG=&F-dDmt|;|nN@|3lOkVZ7>z*~a1?_t?U)c+&|JFJke1`&0-a z#PjhRlg?=$KTo4|rU@NyV_fzDy@>h!lVyKShsO8>V>$xyIXRbHK%H~^Aaz=s$Jz^V zlb?KfaKdZqu3^#m$mintvgJ15@j`sb2Zr%69Sn=xN01Tm5r)NQanT=jhwm7zqj2>O cEB}D~0$b-QdD7|v=>Px#07*qoM6N<$g6AXnUH||9 literal 0 HcmV?d00001 diff --git a/public/asset/css/lib/chosen/chosen-sprite@2x.png b/public/asset/css/lib/chosen/chosen-sprite@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..6b50545202cb4770039362c55025b0b9824663ad GIT binary patch literal 738 zcmV<80v-K{P)oJoIWh{eAG@xkM<0ryd(K3(} zP8JV&;uuIJ4nL%g8!wSG9E$P+3QVMGgj><+00}M5I5kMzaT<~M;uJ`UhLfbp9Ahdsrux5(g+(>Q*+9wU{AuYPH0}W_u4`|q(9c->{ zt>Jn|lbhH<_x5jU6prFi#S}&XMZ=~Y5VyC3+ZN%hXciz8 zPcLpJgbIK#a49e31-%wf2zh2F&&(Nq;AL%4zA(=QJRGq`sx3y3#0_cg9Fim739XTOu1NKKjlWs`52Q+3 Uja*K~(*OVf07*qoM6N<$g3mu-GXMYp literal 0 HcmV?d00001 diff --git a/public/asset/css/lib/chosen/chosen.css b/public/asset/css/lib/chosen/chosen.css new file mode 100644 index 0000000..d4219b4 --- /dev/null +++ b/public/asset/css/lib/chosen/chosen.css @@ -0,0 +1,490 @@ +/*! +Chosen, a Select Box Enhancer for jQuery and Prototype +by Patrick Filler for Harvest, http://getharvest.com + +Version 1.8.2 +Full source at https://github.com/harvesthq/chosen +Copyright (c) 2011-2017 Harvest http://getharvest.com + +MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md +This file is generated by `grunt build`, do not edit it by hand. +*/ + +/* @group Base */ +.chosen-container { + position: relative; + display: inline-block; + vertical-align: middle; + font-size: 13px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.chosen-container * { + -webkit-box-sizing: border-box; + box-sizing: border-box; +} + +.chosen-container .chosen-drop { + position: absolute; + top: 100%; + z-index: 1010; + width: 100%; + border: 1px solid #aaa; + border-top: 0; + background: #fff; + -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); + box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); + clip: rect(0, 0, 0, 0); +} + +.chosen-container.chosen-with-drop .chosen-drop { + clip: auto; +} + +.chosen-container a { + cursor: pointer; +} + +.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name { + margin-right: 4px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + font-weight: normal; + color: #999999; +} + +.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after { + content: ":"; + padding-left: 2px; + vertical-align: top; +} + +/* @end */ +/* @group Single Chosen */ +.chosen-container-single .chosen-single { + position: relative; + display: block; + overflow: hidden; + padding: 0 0 0 8px; + height: 25px; + border: 1px solid #aaa; + border-radius: 5px; + background-color: #fff; + background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4)); + background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%); + background-clip: padding-box; + -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1); + box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1); + color: #444; + text-decoration: none; + white-space: nowrap; + line-height: 24px; +} + +.chosen-container-single .chosen-default { + color: #999; +} + +.chosen-container-single .chosen-single span { + display: block; + overflow: hidden; + margin-right: 26px; + text-overflow: ellipsis; + white-space: nowrap; +} + +.chosen-container-single .chosen-single-with-deselect span { + margin-right: 38px; +} + +.chosen-container-single .chosen-single abbr { + position: absolute; + top: 6px; + right: 26px; + display: block; + width: 12px; + height: 12px; + background: url("chosen-sprite.png") -42px 1px no-repeat; + font-size: 1px; +} + +.chosen-container-single .chosen-single abbr:hover { + background-position: -42px -10px; +} + +.chosen-container-single.chosen-disabled .chosen-single abbr:hover { + background-position: -42px -10px; +} + +.chosen-container-single .chosen-single div { + position: absolute; + top: 0; + right: 0; + display: block; + width: 18px; + height: 100%; +} + +.chosen-container-single .chosen-single div b { + display: block; + width: 100%; + height: 100%; + background: url("chosen-sprite.png") no-repeat 0px 2px; +} + +.chosen-container-single .chosen-search { + position: relative; + z-index: 1010; + margin: 0; + padding: 3px 4px; + white-space: nowrap; +} + +.chosen-container-single .chosen-search input[type="text"] { + margin: 1px 0; + padding: 4px 20px 4px 5px; + width: 100%; + height: auto; + outline: 0; + border: 1px solid #aaa; + background: url("chosen-sprite.png") no-repeat 100% -20px; + font-size: 1em; + font-family: sans-serif; + line-height: normal; + border-radius: 0; +} + +.chosen-container-single .chosen-drop { + margin-top: -1px; + border-radius: 0 0 4px 4px; + background-clip: padding-box; +} + +.chosen-container-single.chosen-container-single-nosearch .chosen-search { + position: absolute; + clip: rect(0, 0, 0, 0); +} + +/* @end */ +/* @group Results */ +.chosen-container .chosen-results { + color: #444; + position: relative; + overflow-x: hidden; + overflow-y: auto; + margin: 0 4px 4px 0; + padding: 0 0 0 4px; + max-height: 240px; + -webkit-overflow-scrolling: touch; +} + +.chosen-container .chosen-results li { + display: none; + margin: 0; + padding: 5px 6px; + list-style: none; + line-height: 15px; + word-wrap: break-word; + -webkit-touch-callout: none; +} + +.chosen-container .chosen-results li.active-result { + display: list-item; + cursor: pointer; +} + +.chosen-container .chosen-results li.disabled-result { + display: list-item; + color: #ccc; + cursor: default; +} + +.chosen-container .chosen-results li.highlighted { + background-color: #3875d7; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc)); + background-image: linear-gradient(#3875d7 20%, #2a62bc 90%); + color: #fff; +} + +.chosen-container .chosen-results li.no-results { + color: #777; + display: list-item; + background: #f4f4f4; +} + +.chosen-container .chosen-results li.group-result { + display: list-item; + font-weight: bold; + cursor: default; +} + +.chosen-container .chosen-results li.group-option { + padding-left: 15px; +} + +.chosen-container .chosen-results li em { + font-style: normal; + text-decoration: underline; +} + +/* @end */ +/* @group Multi Chosen */ +.chosen-container-multi .chosen-choices { + position: relative; + overflow: hidden; + margin: 0; + padding: 0 5px; + width: 100%; + height: auto; + border: 1px solid #aaa; + background-color: #fff; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff)); + background-image: linear-gradient(#eee 1%, #fff 15%); + cursor: text; +} + +.chosen-container-multi .chosen-choices li { + float: left; + list-style: none; +} + +.chosen-container-multi .chosen-choices li.search-field { + margin: 0; + padding: 0; + white-space: nowrap; +} + +.chosen-container-multi .chosen-choices li.search-field input[type="text"] { + margin: 1px 0; + padding: 0; + height: 25px; + outline: 0; + border: 0 !important; + background: transparent !important; + -webkit-box-shadow: none; + box-shadow: none; + color: #999; + font-size: 100%; + font-family: sans-serif; + line-height: normal; + border-radius: 0; + width: 25px; +} + +.chosen-container-multi .chosen-choices li.search-choice { + position: relative; + margin: 3px 5px 3px 0; + padding: 3px 20px 3px 5px; + border: 1px solid #aaa; + max-width: 100%; + border-radius: 3px; + background-color: #eeeeee; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee)); + background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); + background-size: 100% 19px; + background-repeat: repeat-x; + background-clip: padding-box; + -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); + box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); + color: #333; + line-height: 13px; + cursor: default; +} + +.chosen-container-multi .chosen-choices li.search-choice span { + word-wrap: break-word; +} + +.chosen-container-multi .chosen-choices li.search-choice .search-choice-close { + position: absolute; + top: 4px; + right: 3px; + display: block; + width: 12px; + height: 12px; + background: url("chosen-sprite.png") -42px 1px no-repeat; + font-size: 1px; +} + +.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover { + background-position: -42px -10px; +} + +.chosen-container-multi .chosen-choices li.search-choice-disabled { + padding-right: 5px; + border: 1px solid #ccc; + background-color: #e4e4e4; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee)); + background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); + color: #666; +} + +.chosen-container-multi .chosen-choices li.search-choice-focus { + background: #d4d4d4; +} + +.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close { + background-position: -42px -10px; +} + +.chosen-container-multi .chosen-results { + margin: 0; + padding: 0; +} + +.chosen-container-multi .chosen-drop .result-selected { + display: list-item; + color: #ccc; + cursor: default; +} + +/* @end */ +/* @group Active */ +.chosen-container-active .chosen-single { + border: 1px solid #5897fb; + -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); + box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); +} + +.chosen-container-active.chosen-with-drop .chosen-single { + border: 1px solid #aaa; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff)); + background-image: linear-gradient(#eee 20%, #fff 80%); + -webkit-box-shadow: 0 1px 0 #fff inset; + box-shadow: 0 1px 0 #fff inset; +} + +.chosen-container-active.chosen-with-drop .chosen-single div { + border-left: none; + background: transparent; +} + +.chosen-container-active.chosen-with-drop .chosen-single div b { + background-position: -18px 2px; +} + +.chosen-container-active .chosen-choices { + border: 1px solid #5897fb; + -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); + box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); +} + +.chosen-container-active .chosen-choices li.search-field input[type="text"] { + color: #222 !important; +} + +/* @end */ +/* @group Disabled Support */ +.chosen-disabled { + opacity: 0.5 !important; + cursor: default; +} + +.chosen-disabled .chosen-single { + cursor: default; +} + +.chosen-disabled .chosen-choices .search-choice .search-choice-close { + cursor: default; +} + +/* @end */ +/* @group Right to Left */ +.chosen-rtl { + text-align: right; +} + +.chosen-rtl .chosen-single { + overflow: visible; + padding: 0 8px 0 0; +} + +.chosen-rtl .chosen-single span { + margin-right: 0; + margin-left: 26px; + direction: rtl; +} + +.chosen-rtl .chosen-single-with-deselect span { + margin-left: 38px; +} + +.chosen-rtl .chosen-single div { + right: auto; + left: 3px; +} + +.chosen-rtl .chosen-single abbr { + right: auto; + left: 26px; +} + +.chosen-rtl .chosen-choices li { + float: right; +} + +.chosen-rtl .chosen-choices li.search-field input[type="text"] { + direction: rtl; +} + +.chosen-rtl .chosen-choices li.search-choice { + margin: 3px 5px 3px 0; + padding: 3px 5px 3px 19px; +} + +.chosen-rtl .chosen-choices li.search-choice .search-choice-close { + right: auto; + left: 4px; +} + +.chosen-rtl.chosen-container-single .chosen-results { + margin: 0 0 4px 4px; + padding: 0 4px 0 0; +} + +.chosen-rtl .chosen-results li.group-option { + padding-right: 15px; + padding-left: 0; +} + +.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div { + border-right: none; +} + +.chosen-rtl .chosen-search input[type="text"] { + padding: 4px 5px 4px 20px; + background: url("chosen-sprite.png") no-repeat -30px -20px; + direction: rtl; +} + +.chosen-rtl.chosen-container-single .chosen-single div b { + background-position: 6px 2px; +} + +.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b { + background-position: -12px 2px; +} + +/* @end */ +/* @group Retina compatibility */ +@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) { + .chosen-rtl .chosen-search input[type="text"], + .chosen-container-single .chosen-single abbr, + .chosen-container-single .chosen-single div b, + .chosen-container-single .chosen-search input[type="text"], + .chosen-container-multi .chosen-choices .search-choice .search-choice-close, + .chosen-container .chosen-results-scroll-down span, + .chosen-container .chosen-results-scroll-up span { + background-image: url("chosen-sprite@2x.png") !important; + background-size: 52px 37px !important; + background-repeat: no-repeat !important; + } +} + +/* @end */ diff --git a/public/asset/css/lib/chosen/chosen.min.css b/public/asset/css/lib/chosen/chosen.min.css new file mode 100644 index 0000000..779d83d --- /dev/null +++ b/public/asset/css/lib/chosen/chosen.min.css @@ -0,0 +1,11 @@ +/*! +Chosen, a Select Box Enhancer for jQuery and Prototype +by Patrick Filler for Harvest, http://getharvest.com + +Version 1.8.2 +Full source at https://github.com/harvesthq/chosen +Copyright (c) 2011-2017 Harvest http://getharvest.com + +MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md +This file is generated by `grunt build`, do not edit it by hand. +*/.chosen-container{position:relative;display:inline-block;vertical-align:middle;font-size:13px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.chosen-container *{-webkit-box-sizing:border-box;box-sizing:border-box}.chosen-container .chosen-drop{position:absolute;top:100%;z-index:1010;width:100%;border:1px solid #aaa;border-top:0;background:#fff;-webkit-box-shadow:0 4px 5px rgba(0,0,0,.15);box-shadow:0 4px 5px rgba(0,0,0,.15);clip:rect(0,0,0,0)}.chosen-container.chosen-with-drop .chosen-drop{clip:auto}.chosen-container a{cursor:pointer}.chosen-container .chosen-single .group-name,.chosen-container .search-choice .group-name{margin-right:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:400;color:#999}.chosen-container .chosen-single .group-name:after,.chosen-container .search-choice .group-name:after{content:":";padding-left:2px;vertical-align:top}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;border:1px solid #aaa;border-radius:5px;background-color:#fff;background:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),to(#f4f4f4));background:linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background-clip:padding-box;-webkit-box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);color:#444;text-decoration:none;white-space:nowrap;line-height:24px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;background:url(chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%;background:url(chosen-sprite.png) no-repeat 0 2px}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type=text]{margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;background:url(chosen-sprite.png) no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;clip:rect(0,0,0,0)}.chosen-container .chosen-results{color:#444;position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{background-color:#3875d7;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#3875d7),color-stop(90%,#2a62bc));background-image:linear-gradient(#3875d7 20%,#2a62bc 90%);color:#fff}.chosen-container .chosen-results li.no-results{color:#777;display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto;border:1px solid #aaa;background-color:#fff;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(1%,#eee),color-stop(15%,#fff));background-image:linear-gradient(#eee 1%,#fff 15%);cursor:text}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type=text]{margin:1px 0;padding:0;height:25px;outline:0;border:0!important;background:0 0!important;-webkit-box-shadow:none;box-shadow:none;color:#999;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;width:25px}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),to(#eee));background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;-webkit-box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice span{word-wrap:break-word}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),to(#eee));background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;border-bottom-right-radius:0;border-bottom-left-radius:0;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#eee),color-stop(80%,#fff));background-image:linear-gradient(#eee 20%,#fff 80%);-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:0 0}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #5897fb;-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active .chosen-choices li.search-field input[type=text]{color:#222!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type=text]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none}.chosen-rtl .chosen-search input[type=text]{padding:4px 5px 4px 20px;background:url(chosen-sprite.png) no-repeat -30px -20px;direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:144dpi),only screen and (min-resolution:1.5dppx){.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span,.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container-single .chosen-search input[type=text],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-rtl .chosen-search input[type=text]{background-image:url(chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}} \ No newline at end of file diff --git a/public/asset/css/lib/datatable/buttons.bootstrap.min.css b/public/asset/css/lib/datatable/buttons.bootstrap.min.css new file mode 100644 index 0000000..a8758ee --- /dev/null +++ b/public/asset/css/lib/datatable/buttons.bootstrap.min.css @@ -0,0 +1 @@ +div.dt-button-info{position:fixed;top:50%;left:50%;width:400px;margin-top:-100px;margin-left:-200px;background-color:white;border:2px solid #111;box-shadow:3px 3px 8px rgba(0,0,0,0.3);border-radius:3px;text-align:center;z-index:21}div.dt-button-info h2{padding:0.5em;margin:0;font-weight:normal;border-bottom:1px solid #ddd;background-color:#f3f3f3}div.dt-button-info>div{padding:1em}button.dt-button,div.dt-button,a.dt-button{position:relative;display:inline-block;box-sizing:border-box;margin-right:0.333em;padding:0.5em 1em;border:1px solid #999;border-radius:2px;cursor:pointer;font-size:0.88em;color:black;white-space:nowrap;overflow:hidden;background-color:#e9e9e9;background-image:-webkit-linear-gradient(top, #fff 0%, #e9e9e9 100%);background-image:-moz-linear-gradient(top, #fff 0%, #e9e9e9 100%);background-image:-ms-linear-gradient(top, #fff 0%, #e9e9e9 100%);background-image:-o-linear-gradient(top, #fff 0%, #e9e9e9 100%);background-image:linear-gradient(to bottom, #fff 0%, #e9e9e9 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white', EndColorStr='#e9e9e9');-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-decoration:none;outline:none}button.dt-button.disabled,div.dt-button.disabled,a.dt-button.disabled{color:#999;border:1px solid #d0d0d0;cursor:default;background-color:#f9f9f9;background-image:-webkit-linear-gradient(top, #fff 0%, #f9f9f9 100%);background-image:-moz-linear-gradient(top, #fff 0%, #f9f9f9 100%);background-image:-ms-linear-gradient(top, #fff 0%, #f9f9f9 100%);background-image:-o-linear-gradient(top, #fff 0%, #f9f9f9 100%);background-image:linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#ffffff', EndColorStr='#f9f9f9')}button.dt-button:active:not(.disabled),button.dt-button.active:not(.disabled),div.dt-button:active:not(.disabled),div.dt-button.active:not(.disabled),a.dt-button:active:not(.disabled),a.dt-button.active:not(.disabled){background-color:#e2e2e2;background-image:-webkit-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);background-image:-moz-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);background-image:-ms-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);background-image:-o-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);background-image:linear-gradient(to bottom, #f3f3f3 0%, #e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f3f3f3', EndColorStr='#e2e2e2');box-shadow:inset 1px 1px 3px #999999}button.dt-button:active:not(.disabled):hover:not(.disabled),button.dt-button.active:not(.disabled):hover:not(.disabled),div.dt-button:active:not(.disabled):hover:not(.disabled),div.dt-button.active:not(.disabled):hover:not(.disabled),a.dt-button:active:not(.disabled):hover:not(.disabled),a.dt-button.active:not(.disabled):hover:not(.disabled){box-shadow:inset 1px 1px 3px #999999;background-color:#cccccc;background-image:-webkit-linear-gradient(top, #eaeaea 0%, #ccc 100%);background-image:-moz-linear-gradient(top, #eaeaea 0%, #ccc 100%);background-image:-ms-linear-gradient(top, #eaeaea 0%, #ccc 100%);background-image:-o-linear-gradient(top, #eaeaea 0%, #ccc 100%);background-image:linear-gradient(to bottom, #eaeaea 0%, #ccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#eaeaea', EndColorStr='#cccccc')}button.dt-button:hover,div.dt-button:hover,a.dt-button:hover{text-decoration:none}button.dt-button:hover:not(.disabled),div.dt-button:hover:not(.disabled),a.dt-button:hover:not(.disabled){border:1px solid #666;background-color:#e0e0e0;background-image:-webkit-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);background-image:-moz-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);background-image:-ms-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);background-image:-o-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);background-image:linear-gradient(to bottom, #f9f9f9 0%, #e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9f9f9', EndColorStr='#e0e0e0')}button.dt-button:focus:not(.disabled),div.dt-button:focus:not(.disabled),a.dt-button:focus:not(.disabled){border:1px solid #426c9e;text-shadow:0 1px 0 #c4def1;outline:none;background-color:#79ace9;background-image:-webkit-linear-gradient(top, #bddef4 0%, #79ace9 100%);background-image:-moz-linear-gradient(top, #bddef4 0%, #79ace9 100%);background-image:-ms-linear-gradient(top, #bddef4 0%, #79ace9 100%);background-image:-o-linear-gradient(top, #bddef4 0%, #79ace9 100%);background-image:linear-gradient(to bottom, #bddef4 0%, #79ace9 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#bddef4', EndColorStr='#79ace9')}.dt-button embed{outline:none}div.dt-buttons{position:relative;float:left}div.dt-buttons.buttons-right{float:right}div.dt-button-collection{position:absolute;top:0;left:0;width:150px;margin-top:3px;padding:8px 8px 4px 8px;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.4);background-color:white;overflow:hidden;z-index:2002;border-radius:5px;box-shadow:3px 3px 5px rgba(0,0,0,0.3);z-index:2002;-webkit-column-gap:8px;-moz-column-gap:8px;-ms-column-gap:8px;-o-column-gap:8px;column-gap:8px}div.dt-button-collection button.dt-button,div.dt-button-collection div.dt-button,div.dt-button-collection a.dt-button{position:relative;left:0;right:0;display:block;float:none;margin-bottom:4px;margin-right:0}div.dt-button-collection button.dt-button:active:not(.disabled),div.dt-button-collection button.dt-button.active:not(.disabled),div.dt-button-collection div.dt-button:active:not(.disabled),div.dt-button-collection div.dt-button.active:not(.disabled),div.dt-button-collection a.dt-button:active:not(.disabled),div.dt-button-collection a.dt-button.active:not(.disabled){background-color:#dadada;background-image:-webkit-linear-gradient(top, #f0f0f0 0%, #dadada 100%);background-image:-moz-linear-gradient(top, #f0f0f0 0%, #dadada 100%);background-image:-ms-linear-gradient(top, #f0f0f0 0%, #dadada 100%);background-image:-o-linear-gradient(top, #f0f0f0 0%, #dadada 100%);background-image:linear-gradient(to bottom, #f0f0f0 0%, #dadada 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f0f0f0', EndColorStr='#dadada');box-shadow:inset 1px 1px 3px #666}div.dt-button-collection.fixed{position:fixed;top:50%;left:50%;margin-left:-75px;border-radius:0}div.dt-button-collection.fixed.two-column{margin-left:-150px}div.dt-button-collection.fixed.three-column{margin-left:-225px}div.dt-button-collection.fixed.four-column{margin-left:-300px}div.dt-button-collection>*{-webkit-column-break-inside:avoid;break-inside:avoid}div.dt-button-collection.two-column{width:300px;padding-bottom:1px;-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;-o-column-count:2;column-count:2}div.dt-button-collection.three-column{width:450px;padding-bottom:1px;-webkit-column-count:3;-moz-column-count:3;-ms-column-count:3;-o-column-count:3;column-count:3}div.dt-button-collection.four-column{width:600px;padding-bottom:1px;-webkit-column-count:4;-moz-column-count:4;-ms-column-count:4;-o-column-count:4;column-count:4}div.dt-button-background{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.7);background:-ms-radial-gradient(center, ellipse farthest-corner, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);background:-moz-radial-gradient(center, ellipse farthest-corner, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);background:-o-radial-gradient(center, ellipse farthest-corner, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);background:-webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0,0,0,0.3)), color-stop(1, rgba(0,0,0,0.7)));background:-webkit-radial-gradient(center, ellipse farthest-corner, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);background:radial-gradient(ellipse farthest-corner at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);z-index:2001}@media screen and (max-width: 640px){div.dt-buttons{float:none !important;text-align:center}} diff --git a/public/asset/css/lib/datatable/buttons.dataTables.min.css b/public/asset/css/lib/datatable/buttons.dataTables.min.css new file mode 100644 index 0000000..a8758ee --- /dev/null +++ b/public/asset/css/lib/datatable/buttons.dataTables.min.css @@ -0,0 +1 @@ +div.dt-button-info{position:fixed;top:50%;left:50%;width:400px;margin-top:-100px;margin-left:-200px;background-color:white;border:2px solid #111;box-shadow:3px 3px 8px rgba(0,0,0,0.3);border-radius:3px;text-align:center;z-index:21}div.dt-button-info h2{padding:0.5em;margin:0;font-weight:normal;border-bottom:1px solid #ddd;background-color:#f3f3f3}div.dt-button-info>div{padding:1em}button.dt-button,div.dt-button,a.dt-button{position:relative;display:inline-block;box-sizing:border-box;margin-right:0.333em;padding:0.5em 1em;border:1px solid #999;border-radius:2px;cursor:pointer;font-size:0.88em;color:black;white-space:nowrap;overflow:hidden;background-color:#e9e9e9;background-image:-webkit-linear-gradient(top, #fff 0%, #e9e9e9 100%);background-image:-moz-linear-gradient(top, #fff 0%, #e9e9e9 100%);background-image:-ms-linear-gradient(top, #fff 0%, #e9e9e9 100%);background-image:-o-linear-gradient(top, #fff 0%, #e9e9e9 100%);background-image:linear-gradient(to bottom, #fff 0%, #e9e9e9 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white', EndColorStr='#e9e9e9');-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-decoration:none;outline:none}button.dt-button.disabled,div.dt-button.disabled,a.dt-button.disabled{color:#999;border:1px solid #d0d0d0;cursor:default;background-color:#f9f9f9;background-image:-webkit-linear-gradient(top, #fff 0%, #f9f9f9 100%);background-image:-moz-linear-gradient(top, #fff 0%, #f9f9f9 100%);background-image:-ms-linear-gradient(top, #fff 0%, #f9f9f9 100%);background-image:-o-linear-gradient(top, #fff 0%, #f9f9f9 100%);background-image:linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#ffffff', EndColorStr='#f9f9f9')}button.dt-button:active:not(.disabled),button.dt-button.active:not(.disabled),div.dt-button:active:not(.disabled),div.dt-button.active:not(.disabled),a.dt-button:active:not(.disabled),a.dt-button.active:not(.disabled){background-color:#e2e2e2;background-image:-webkit-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);background-image:-moz-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);background-image:-ms-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);background-image:-o-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);background-image:linear-gradient(to bottom, #f3f3f3 0%, #e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f3f3f3', EndColorStr='#e2e2e2');box-shadow:inset 1px 1px 3px #999999}button.dt-button:active:not(.disabled):hover:not(.disabled),button.dt-button.active:not(.disabled):hover:not(.disabled),div.dt-button:active:not(.disabled):hover:not(.disabled),div.dt-button.active:not(.disabled):hover:not(.disabled),a.dt-button:active:not(.disabled):hover:not(.disabled),a.dt-button.active:not(.disabled):hover:not(.disabled){box-shadow:inset 1px 1px 3px #999999;background-color:#cccccc;background-image:-webkit-linear-gradient(top, #eaeaea 0%, #ccc 100%);background-image:-moz-linear-gradient(top, #eaeaea 0%, #ccc 100%);background-image:-ms-linear-gradient(top, #eaeaea 0%, #ccc 100%);background-image:-o-linear-gradient(top, #eaeaea 0%, #ccc 100%);background-image:linear-gradient(to bottom, #eaeaea 0%, #ccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#eaeaea', EndColorStr='#cccccc')}button.dt-button:hover,div.dt-button:hover,a.dt-button:hover{text-decoration:none}button.dt-button:hover:not(.disabled),div.dt-button:hover:not(.disabled),a.dt-button:hover:not(.disabled){border:1px solid #666;background-color:#e0e0e0;background-image:-webkit-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);background-image:-moz-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);background-image:-ms-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);background-image:-o-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);background-image:linear-gradient(to bottom, #f9f9f9 0%, #e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9f9f9', EndColorStr='#e0e0e0')}button.dt-button:focus:not(.disabled),div.dt-button:focus:not(.disabled),a.dt-button:focus:not(.disabled){border:1px solid #426c9e;text-shadow:0 1px 0 #c4def1;outline:none;background-color:#79ace9;background-image:-webkit-linear-gradient(top, #bddef4 0%, #79ace9 100%);background-image:-moz-linear-gradient(top, #bddef4 0%, #79ace9 100%);background-image:-ms-linear-gradient(top, #bddef4 0%, #79ace9 100%);background-image:-o-linear-gradient(top, #bddef4 0%, #79ace9 100%);background-image:linear-gradient(to bottom, #bddef4 0%, #79ace9 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#bddef4', EndColorStr='#79ace9')}.dt-button embed{outline:none}div.dt-buttons{position:relative;float:left}div.dt-buttons.buttons-right{float:right}div.dt-button-collection{position:absolute;top:0;left:0;width:150px;margin-top:3px;padding:8px 8px 4px 8px;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.4);background-color:white;overflow:hidden;z-index:2002;border-radius:5px;box-shadow:3px 3px 5px rgba(0,0,0,0.3);z-index:2002;-webkit-column-gap:8px;-moz-column-gap:8px;-ms-column-gap:8px;-o-column-gap:8px;column-gap:8px}div.dt-button-collection button.dt-button,div.dt-button-collection div.dt-button,div.dt-button-collection a.dt-button{position:relative;left:0;right:0;display:block;float:none;margin-bottom:4px;margin-right:0}div.dt-button-collection button.dt-button:active:not(.disabled),div.dt-button-collection button.dt-button.active:not(.disabled),div.dt-button-collection div.dt-button:active:not(.disabled),div.dt-button-collection div.dt-button.active:not(.disabled),div.dt-button-collection a.dt-button:active:not(.disabled),div.dt-button-collection a.dt-button.active:not(.disabled){background-color:#dadada;background-image:-webkit-linear-gradient(top, #f0f0f0 0%, #dadada 100%);background-image:-moz-linear-gradient(top, #f0f0f0 0%, #dadada 100%);background-image:-ms-linear-gradient(top, #f0f0f0 0%, #dadada 100%);background-image:-o-linear-gradient(top, #f0f0f0 0%, #dadada 100%);background-image:linear-gradient(to bottom, #f0f0f0 0%, #dadada 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f0f0f0', EndColorStr='#dadada');box-shadow:inset 1px 1px 3px #666}div.dt-button-collection.fixed{position:fixed;top:50%;left:50%;margin-left:-75px;border-radius:0}div.dt-button-collection.fixed.two-column{margin-left:-150px}div.dt-button-collection.fixed.three-column{margin-left:-225px}div.dt-button-collection.fixed.four-column{margin-left:-300px}div.dt-button-collection>*{-webkit-column-break-inside:avoid;break-inside:avoid}div.dt-button-collection.two-column{width:300px;padding-bottom:1px;-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;-o-column-count:2;column-count:2}div.dt-button-collection.three-column{width:450px;padding-bottom:1px;-webkit-column-count:3;-moz-column-count:3;-ms-column-count:3;-o-column-count:3;column-count:3}div.dt-button-collection.four-column{width:600px;padding-bottom:1px;-webkit-column-count:4;-moz-column-count:4;-ms-column-count:4;-o-column-count:4;column-count:4}div.dt-button-background{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.7);background:-ms-radial-gradient(center, ellipse farthest-corner, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);background:-moz-radial-gradient(center, ellipse farthest-corner, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);background:-o-radial-gradient(center, ellipse farthest-corner, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);background:-webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0,0,0,0.3)), color-stop(1, rgba(0,0,0,0.7)));background:-webkit-radial-gradient(center, ellipse farthest-corner, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);background:radial-gradient(ellipse farthest-corner at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);z-index:2001}@media screen and (max-width: 640px){div.dt-buttons{float:none !important;text-align:center}} diff --git a/public/asset/css/lib/datatable/dataTables.bootstrap.min.css b/public/asset/css/lib/datatable/dataTables.bootstrap.min.css new file mode 100644 index 0000000..0845138 --- /dev/null +++ b/public/asset/css/lib/datatable/dataTables.bootstrap.min.css @@ -0,0 +1 @@ +table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px !important;max-width:none !important;border-collapse:separate !important}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}div.dataTables_wrapper div.dataTables_length label{font-weight:normal;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:75px;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:normal;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:0.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:0.85em;white-space:nowrap}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap;justify-content:flex-end}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:1em 0}table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting{padding-right:30px}table.dataTable thead>tr>th:active,table.dataTable thead>tr>td:active{outline:none}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;position:relative}table.dataTable thead .sorting:before,table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:before,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:before,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:before,table.dataTable thead .sorting_desc_disabled:after{position:absolute;bottom:0.9em;display:block;opacity:0.3}table.dataTable thead .sorting:before,table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:before,table.dataTable thead .sorting_asc_disabled:before,table.dataTable thead .sorting_desc_disabled:before{right:1em;content:"\2191"}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{right:0.5em;content:"\2193"}table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:after{opacity:1}table.dataTable thead .sorting_asc_disabled:before,table.dataTable thead .sorting_desc_disabled:after{opacity:0}div.dataTables_scrollHead table.dataTable{margin-bottom:0 !important}div.dataTables_scrollBody table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody table thead .sorting:after,div.dataTables_scrollBody table thead .sorting_asc:after,div.dataTables_scrollBody table thead .sorting_desc:after{display:none}div.dataTables_scrollBody table tbody tr:first-child th,div.dataTables_scrollBody table tbody tr:first-child td{border-top:none}div.dataTables_scrollFoot>.dataTables_scrollFootInner{box-sizing:content-box}div.dataTables_scrollFoot>.dataTables_scrollFootInner>table{margin-top:0 !important;border-top:none}@media screen and (max-width: 767px){div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_paginate{text-align:center}}table.dataTable.table-sm>thead>tr>th{padding-right:20px}table.dataTable.table-sm .sorting:before,table.dataTable.table-sm .sorting_asc:before,table.dataTable.table-sm .sorting_desc:before{top:5px;right:0.85em}table.dataTable.table-sm .sorting:after,table.dataTable.table-sm .sorting_asc:after,table.dataTable.table-sm .sorting_desc:after{top:5px}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-left-width:0}table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable td:last-child{border-right-width:0}table.table-bordered.dataTable tbody th,table.table-bordered.dataTable tbody td{border-bottom-width:0}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:first-child{padding-left:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:last-child{padding-right:0} \ No newline at end of file diff --git a/public/asset/css/lib/vector-map/jqvmap.min.css b/public/asset/css/lib/vector-map/jqvmap.min.css new file mode 100644 index 0000000..3da73ac --- /dev/null +++ b/public/asset/css/lib/vector-map/jqvmap.min.css @@ -0,0 +1,45 @@ +.jqvmap-label, +.jqvmap-pin { + pointer-events: none +} +.jqvmap-label { + position: absolute; + display: none; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + background: #292929; + color: #fff; + font-family: sans-serif, Verdana; + font-size: smaller; + padding: 3px +} +.jqvmap-zoomin, +.jqvmap-zoomout { + position: absolute; + left: 10px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + background: #000; + padding: 3px; + color: #fff; + width: 15px; + height: 15px; + cursor: pointer; + line-height: 10px; + text-align: center +} +.jqvmap-zoomin { + top: 10px +} +.jqvmap-zoomout { + top: 30px +} +.jqvmap-region { + cursor: pointer +} +.jqvmap-ajax_response { + width: 100%; + height: 500px +} \ No newline at end of file diff --git a/public/asset/css/style.css b/public/asset/css/style.css new file mode 100644 index 0000000..a6b8dbd --- /dev/null +++ b/public/asset/css/style.css @@ -0,0 +1,2506 @@ +/* This css file is to over write bootstarp css +--------------------------------------------------------- / +* Theme Name: Ela Admin Template +* Theme URI: http://demos.jeweltheme.com/ +* Author: jewel_theme +* Author URI: http://themeforest.net/user/jewel_theme/portfolio +* Description: +* Version: 1.0.0 +* License: GNU General Public License v2 or later +* License URI: http://www.gnu.org/licenses/gpl-2.0.html +* Tags: html, themplate, Ela Admin +--------------------------------------------------------- */ +/* + + +Googel Fonts */ +@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700"); +/* Googel Fonts End + +*/ +@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700"); +.bg-flat-color-1 { + background: #00c292; } + +.bg-flat-color-2 { + background: #ab8ce4; } + +.bg-flat-color-3 { + background: #03a9f3; } + +.bg-flat-color-4 { + background: #fb9678; } + +.bg-flat-color-5 { + background: #66bb6a; } + +.bg-flat-color-6 { + background: #5c6bc0; } + +.bg-transparent { + background-color: transparent; } + +.white-color { + color: #fff; } + +.flat-color-1 { + color: #00c292; } + +.flat-color-2 { + color: #ab8ce4; } + +.flat-color-3 { + color: #03a9f3; } + +.flat-color-4 { + color: #fb9678; } + +.flat-color-5 { + color: #66bb6a; } + +.flat-color-6 { + color: #5c6bc0; } + +.bg-twitter { + background: #1da1f2; } + +.bg-facebook { + background: #3b5998; } + +.bg-instagram { + background: #833ab4; } + +.bg- { + background: #ef5350; } + +.bg- { + background: #4dbd74; } + +.bg- { + background: #66bb6a; } + +.bg-white { + background-color: #fff; } + +.fade-5 { + opacity: 0.5; } + +.icon-lg { + font-size: 4.68em; } + +.fw-r { + font-weight: normal; } + +.color-gray { + color: #868e96; } + +.text-up { + text-transform: uppercase; } + +.br-0 { + border: none !important; } + +.black-rgba { + background-color: rgba(0, 0, 0, 0.15) !important; } + +.color-white { + color: #fff !important; } + +.color-red { + color: #dc3545; } + +.font-3xl { + font-size: 2.8125em; } + +.font-4xl { + font-size: 3.75em; } + +.width-90 { + width: 90px; } + +.height-15 { + height: 15px; } + +.height-93 { + height: 93px; } + +.height-100 { + height: 100px; } + +.inline-block { + display: inline-block; } + +.mb-15 { + margin-bottom: 15px; } + +/* + + +Googel Fonts */ +/* Googel Fonts End + +*/ +.bg-flat-color-1 { + background: #00c292; } + +.bg-flat-color-2 { + background: #ab8ce4; } + +.bg-flat-color-3 { + background: #03a9f3; } + +.bg-flat-color-4 { + background: #fb9678; } + +.bg-flat-color-5 { + background: #66bb6a; } + +.bg-flat-color-6 { + background: #5c6bc0; } + +.bg-transparent { + background-color: transparent; } + +.white-color { + color: #fff; } + +.flat-color-1 { + color: #00c292; } + +.flat-color-2 { + color: #ab8ce4; } + +.flat-color-3 { + color: #03a9f3; } + +.flat-color-4 { + color: #fb9678; } + +.flat-color-5 { + color: #66bb6a; } + +.flat-color-6 { + color: #5c6bc0; } + +.bg-twitter { + background: #1da1f2; } + +.bg-facebook { + background: #3b5998; } + +.bg-instagram { + background: #833ab4; } + +.bg- { + background: #ef5350; } + +.bg- { + background: #4dbd74; } + +.bg- { + background: #66bb6a; } + +.bg-white { + background-color: #fff; } + +.fade-5 { + opacity: 0.5; } + +.icon-lg { + font-size: 4.68em; } + +.fw-r { + font-weight: normal; } + +.color-gray { + color: #868e96; } + +.text-up { + text-transform: uppercase; } + +.br-0 { + border: none !important; } + +.black-rgba { + background-color: rgba(0, 0, 0, 0.15) !important; } + +.color-white { + color: #fff !important; } + +.color-red { + color: #dc3545; } + +.font-3xl { + font-size: 2.8125em; } + +.font-4xl { + font-size: 3.75em; } + +.width-90 { + width: 90px; } + +.height-15 { + height: 15px; } + +.height-93 { + height: 93px; } + +.height-100 { + height: 100px; } + +.inline-block { + display: inline-block; } + +.mb-15 { + margin-bottom: 15px; } + +.tdl-holder { + margin: 0 auto; } + .tdl-holder ul { + list-style: none; + margin: 0; + padding: 0; } + .tdl-holder li { + position: relative; + background-color: transparent; + list-style: outside none none; + margin: 0; + padding: 7px 0; } + .tdl-holder li:after, .tdl-holder li:before { + content: "\f142"; + top: 24px; + position: absolute; + font: normal normal normal 14px/1 FontAwesome; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + z-index: 99; + color: #99abb4; } + .tdl-holder li:after { + left: 10px; } + .tdl-holder li:before { + left: 14px; } + .tdl-holder li span { + margin-left: 30px; + vertical-align: middle; + -webkit-transition: all 0.2s linear; + transition: all 0.2s linear; } + .tdl-holder label { + cursor: pointer; + display: block; + line-height: 50px; + padding: 0 15px; + padding-left: 30px; + position: relative; + margin: 0 !important; + background: #fafafa; + color: #99abb4; + font-size: 15px; + -webkit-transition: all 0.2s linear; + transition: all 0.2s linear; } + .tdl-holder label:hover { + background-color: rgba(153, 171, 180, 0.1); } + .tdl-holder label a { + border-radius: 50%; + color: rgba(153, 171, 180, 0.5); + float: right; + line-height: normal; + margin-top: 15px; + text-align: center; + text-decoration: none; + height: 16px; + width: 20px; + -webkit-transition: all 0.2s linear; + transition: all 0.2s linear; } + .tdl-holder label a:hover { + color: rgba(153, 171, 180, 0.8); } + .tdl-holder input[type="checkbox"] { + cursor: pointer; + opacity: 0; + position: absolute; } + .tdl-holder input[type="checkbox"] + i { + border: 1px solid rgba(153, 171, 180, 0.3); + display: block; + height: 18px; + position: absolute; + top: 15px; + width: 18px; + z-index: 1; } + .tdl-holder input[type="checkbox"]:checked + i::after { + content: "\e64c"; + font-family: 'themify'; + display: block; + color: rgba(153, 171, 180, 0.5); + left: 0; + position: absolute; + top: -16px; + z-index: 2; } + .tdl-holder input[type="checkbox"]:checked ~ span { + text-decoration: line-through; } + .tdl-holder input[type="text"] { + height: 60px; + margin-top: 20px; + font-size: 14px; } + +.transition { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; } + +body { + display: table; + font-family: "Open Sans", sans-serif; + font-size: 16px; + width: 100%; } + +p { + font-size: 16px; + font-family: "Open Sans", sans-serif; + font-weight: 400; + line-height: 24px; + color: #878787; } + +p:focus { + border: none; + outline: 0; } + +a, button { + text-decoration: none; + outline: none !important; + color: #878787; + -webkit-transition: all 0.25s ease; + transition: all 0.25s ease; } + +a:hover, +a:focus { + text-decoration: none; + color: #000; } + +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 0; } + +h5 { + font-size: 1em; } + +ul, +ol { + padding-left: 0; } + +.btn:focus, +button:focus { + -webkit-box-shadow: none !important; + box-shadow: none !important; + outline: 0; } + +.btn.disabled, .btn:disabled { + cursor: not-allowed; } + +img { + max-width: 100%; } + +.modal-header { + display: block; } + +.mb-0 { + margin-bottom: 0; } + +.pb-0 { + padding-bottom: 0; } + +.ov-h { + overflow: hidden; } + +.btn, +button, +input, +textarea { + -webkit-box-shadow: none; + box-shadow: none; + outline: 0 !important; } + +.no-padding { + padding: 0 !important; } + +.progress-thin { + border-radius: 0; + height: 5px; } + +canvas { + max-width: 100%; } + +.btn { + border-radius: 3px; } + +.text-muted { + font-size: 14px; } + .text-muted.muted-black { + color: #333648 !important; + font-weight: 600; } + +.progress-box { + margin-bottom: 30px; } + .progress-box .por-title { + font-size: 1em; + font-weight: 600; + color: #868e96; + padding-bottom: 5px; } + .progress-box .por-txt { + font-size: 13px; + padding-bottom: 5px; } + +.order-table { + position: relative; } + .order-table:after, .order-table:before { + content: ""; + position: absolute; + top: 0px; + height: 37px; + width: 10px; + background: #e8e9ef; } + .order-table:after { + right: -1px; } + .order-table:before { + left: -1px; } + .order-table tr th { + background: #e8e9ef; } + .order-table tr td:last-child, .order-table tr th:last-child { + text-align: right; } + .order-table tr:last-child td { + border: none; } + .order-table .badge { + color: white; + padding: 10px; + text-transform: uppercase; + font-weight: normal; } + .order-table .badge-complete { + background: #00c292; } + .order-table .badge-pending { + background: #fb9678; } + +.messenger-box { + padding-top: 15px; } + .messenger-box ul { + padding-left: 0; + display: inline-block; + width: 100%; + padding-bottom: 15px; } + .messenger-box li { + list-style: none; + padding-bottom: 20px; } + .messenger-box .avatar { + width: 64px; + float: left; } + .messenger-box .avatar img { + border-radius: 100%; } + .messenger-box .avatar .send-time { + font-size: 11px; + text-align: center; + padding-top: 5px; } + .messenger-box .msg-box { + margin-left: 84px; } + .messenger-box .inner-box { + position: relative; + border-radius: 10px; + background-color: #f1f2f7; + font-size: 14px; + color: #9aa0a4; + padding: 14px 20px; + display: table; } + .messenger-box .inner-box .name { + font-size: 16px; + padding-bottom: 10px; } + .messenger-box .inner-box:after { + content: ""; + position: absolute; + top: 10px; + left: -18px; + width: 18px; + height: 18px; + border-style: solid; + border-width: 9px; + border-color: transparent #f1f2f7 transparent transparent; } + .messenger-box .msg-sent .avatar, .messenger-box .msg-sent .msg-box { + float: right; } + .messenger-box .msg-sent .msg-box { + margin-left: 0; + margin-right: 20px; } + .messenger-box .msg-sent .inner-box:after { + left: inherit; + right: -18px; + border-color: transparent transparent transparent #f1f2f7; } + .messenger-box .send-mgs { + margin-top: 20px; + margin-bottom: 9px; + position: relative; } + .messenger-box .send-mgs .yourmsg { + margin-right: 55px; } + .messenger-box .send-mgs .yourmsg input { + border: 1px solid #eceff1; + height: 40px; + line-height: 40px; + font-size: 14px; + border-radius: 7px; } + .messenger-box .send-mgs .msg-send-btn { + background: #03a9f3; + color: #fff; + font-size: 28px; + border-radius: 7px; + padding: 0; + text-align: center; + height: 40px; + width: 40px; + position: absolute; + right: 0; + top: 0; } + +/* Global Styles */ +/* Main Styles */ +aside.left-panel { + background: #fff; + height: 100vh; + padding: 0; + vertical-align: top; + width: 280px; + -webkit-box-shadow: 1px 0 20px rgba(0, 0, 0, 0.08); + box-shadow: 1px 0 20px rgba(0, 0, 0, 0.08); + position: fixed; + left: 0; + bottom: 0; + top: 55px; + z-index: 999; } + aside.left-panel:hover { + overflow-x: scroll; } + +.open aside.left-panel:hover { + overflow-x: inherit; } + +.small-device .right-panel { + margin-left: 83px; } + +.navbar { + background: #fff; + border-radius: 0; + border: none; + display: inline-block; + margin: 0; + padding: 0; + vertical-align: top; } + .navbar .main-menu { + float: left; + padding: 0; + padding-bottom: 50px; } + .navbar .menu-title { + color: #41434d; + clear: both; + display: block; + font-family: 'Open Sans'; + font-size: 14px; + font-weight: 700; + line-height: 50px; + padding: 0; + text-transform: uppercase; + width: 100%; } + .navbar .navbar-nav { + float: none; + position: relative; } + .navbar .navbar-nav > li { + padding-left: 30px; + padding-right: 30px; } + .navbar .navbar-nav > li.active { + background: #fafafa; } + .navbar .navbar-nav li { + width: 100%; } + .navbar .navbar-nav li.active .menu-icon, .navbar .navbar-nav li:hover .toggle_nav_button:before, + .navbar .navbar-nav li .toggle_nav_button.nav-open:before { + color: #03a9f3; } + .navbar .navbar-nav li .dropdown-toggle:after { + display: none; } + .navbar .navbar-nav li > a { + background: none !important; + color: #607d8b; + display: inline-block; + font-size: 14px; + line-height: 26px; + padding: 10px 0; + position: relative; + width: 100%; } + .navbar .navbar-nav li > a:hover, .navbar .navbar-nav li > a:hover .menu-icon { + color: #03a9f3; } + .navbar .navbar-nav li > a .menu-icon { + color: #607d8b; + float: left; + margin-top: 8px; + width: 55px; + text-align: left; + z-index: 9; } + .navbar .navbar-nav li > a .menu-title-text { + font-size: 14px; } + .navbar .navbar-nav li > a .badge { + border-radius: 0; + font-weight: 600; + float: right; + margin: 6px 0 0 0; + padding: 0.4em 0.5em; } + .navbar .navbar-nav li.menu-item-has-children { + position: relative; } + .navbar .navbar-nav li.menu-item-has-children a { + line-height: 30px; } + .navbar .navbar-nav li.menu-item-has-children a:before { + content: ""; + position: absolute; + top: 23px; + right: 0; + width: 8px; + height: 8px; + border-style: solid; + border-width: 1px; + border-color: #607d8b #607d8b transparent transparent; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-transition: all .25s ease; + transition: all .25s ease; } + .navbar .navbar-nav li.menu-item-has-children a:hover:before { + border-color: #03a9f3 #03a9f3 transparent transparent; } + .navbar .navbar-nav li.menu-item-has-children .sub-menu { + background: #fff; + border: none; + -webkit-box-shadow: none; + box-shadow: none; + overflow-y: hidden; + padding: 0 0 0 35px; } + .navbar .navbar-nav li.menu-item-has-children .sub-menu li { + position: relative; } + .navbar .navbar-nav li.menu-item-has-children .sub-menu i { + color: #c8c9ce; + float: left; + padding: 0; + position: absolute; + left: 0; + font-size: 14px; + top: 9px; } + .navbar .navbar-nav li.menu-item-has-children .sub-menu a { + padding: 2px 0 2px 30px; } + .navbar .navbar-nav li.menu-item-has-children .sub-menu a:before { + content: ''; + display: none; } + .navbar .navbar-nav li.menu-item-has-children .sub-menu a .menu-icon { + top: 13px; + text-align: left; + width: 25px; } + .navbar .navbar-nav li.menu-item-has-children.show a:before { + border-color: transparent #607d8b #607d8b transparent; + top: 20px; + right: -5px; } + .navbar .navbar-nav li.menu-item-has-children.show a:hover:before { + border-color: transparent #03a9f3 #03a9f3 transparent; } + .navbar .navbar-nav li.menu-item-has-children.show .sub-menu { + max-height: 1000px; + opacity: 1; + position: static !important; } + +.navbar .navbar-nav > .active > a, +.navbar .navbar-nav > .active > a:focus, +.navbar .navbar-nav > .active > a:hover { + color: #03a9f3; } + +.navbar-nav li span.count { + background: #a9d86e; + border-radius: 50%; + color: #fff; + font-family: 'Open Sans'; + font-size: 9px; + font-weight: 700; + float: right; + height: 20px; + width: 20px; + line-height: 20px; + margin-right: 15px; + text-align: center; } + +.open .navbar .navbar-brand.hidden { + display: block; } +.open .sub-menu .subtitle { + display: block; + font-size: 15px; + line-height: 35px; + color: #607d8b; + border-bottom: 1px solid rgba(96, 125, 139, 0.15); } +.open .sub-menu i { + left: 15px !important; } + +.sub-menu .subtitle { + display: none; } + .sub-menu .subtitle > .menu-icon { + display: none; } + +.open aside.left-panel { + max-width: 83px; + width: 83px; } + .open aside.left-panel .navbar .navbar-header { + padding: 0; } + .open aside.left-panel .navbar .navbar-brand { + display: none; } + .open aside.left-panel .navbar .navbar-brand.hidden { + display: block !important; + text-align: center; + width: 100%; } + .open aside.left-panel .navbar .navbar-brand.hidden img { + max-width: 100%; + margin: 0 auto; } + .open aside.left-panel .navbar .navbar-brand.d-md-none { + display: block !important; + margin: 13px 0 0; + min-height: 67px; + padding: 0; + text-align: center; } + .open aside.left-panel .navbar .navbar-nav:before { + display: none !important; } + .open aside.left-panel .navbar .navbar-nav li { + position: relative; + padding: 0 15px; } + .open aside.left-panel .navbar .navbar-nav li a { + font-size: 0; + z-index: 0; + -webkit-transition: none; + transition: none; } + .open aside.left-panel .navbar .navbar-nav li a .menu-icon { + font-size: 20px; + z-index: -1; + text-align: center; + width: inherit; } + .open aside.left-panel .navbar .navbar-nav li a .menu-title-text { + font-size: 0; } + .open aside.left-panel .navbar .navbar-nav li a .badge { + display: none; } + .open aside.left-panel .navbar .navbar-nav li > a { + max-width: 60px; + padding-left: 0; } + .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children { + overflow: hidden; } + .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children ul { + padding-left: 0; } + .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children .sub-menu { + display: block; + left: 83px; + top: 0; } + .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children .sub-menu li a { + display: block; + font-size: 14px; + max-width: inherit; + padding: 2px 15px 2px 25px; + width: 100%; } + .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children .sub-menu li a .menu-icon { + text-align: center; } + .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children.show { + overflow: visible; } + .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children.show .sub-menu { + position: absolute !important; + width: 180px; + -webkit-box-shadow: 1px 0 20px rgba(0, 0, 0, 0.08); + box-shadow: 1px 0 20px rgba(0, 0, 0, 0.08); } + .open aside.left-panel .navbar .navbar-nav li span.count { + display: none; + margin-right: 5px; + z-index: 1; } + .open aside.left-panel .navbar .navbar-nav li.active a:after { + content: ''; + display: none; } + .open aside.left-panel .navbar .navbar-nav .menu-title { + font-size: 0; + line-height: 0; + opacity: 0; + padding: 0; } + .open aside.left-panel .menutoggle { + background-color: #dc3545; + color: #fff !important; + right: -20px; + text-align: center; } + +/* Right panel */ +.right-panel { + background: #f1f2f7; + margin-left: 280px; + margin-top: 55px; } + .right-panel .top-left { + width: 350px; + float: left; } + .right-panel .top-rigth { + float: left; } + .right-panel .breadcrumbs { + float: left; + margin-top: 30px; + padding: 0 1.875em; + width: 100%; } + .right-panel .breadcrumbs .breadcrumbs-inner { + background-color: #fff; } + .right-panel .breadcrumbs .col-lg-8 .page-header { + float: left; } + .right-panel .page-header { + min-height: 50px; + margin: 0px; + padding: 0px 15px; + background: #ffffff; + border-bottom: 0px; } + .right-panel .page-header h1 { + font-size: 18px; + padding: 15px 0; } + .right-panel .page-header .breadcrumb { + margin: 0px; + padding: 13.5px 0; + background: #fff; + text-transform: capitalize; } + .right-panel .page-header .breadcrumb > li + li:before { + padding: 0 5px; + color: #ccc; + content: "/\00a0"; } + +.right-panel header.header { + background: #fff; + border-bottom: 1px solid #e8e9ed; + -webkit-box-shadow: none; + box-shadow: none; + clear: both; + padding: 0 30px; + height: 55px; + position: fixed; + left: 280px; + left: 0; + right: 0; + top: 0; + z-index: 999; } +.right-panel .navbar-brand { + width: 250px; + display: inline-block; } +.right-panel .menutoggle { + padding-top: 7px; } +.right-panel .navbar-header { + width: 100%; + background-color: #fff; + padding: 0 1.25em 0 0; } + .right-panel .navbar-header > a { + display: inline-block; } +.right-panel .navbar-brand { + line-height: 42px; } + .right-panel .navbar-brand img { + max-width: 145px; } + .right-panel .navbar-brand.hidden { + display: none; } + +.open .right-panel { + margin-left: 83px; } +.open .let-panel { + z-index: 999; } + +header.fixed-top { + background: #fff; + padding: 20px; } + +.menutoggle { + background-color: transparent; + color: #99abb4 !important; + cursor: pointer; + font-size: 1em; + height: 40px; + line-height: 40px; + width: 40px; + display: block; + text-align: right; } + +.search-trigger { + background: transparent; + border: none; + color: #99abb4; + cursor: pointer; + font-size: 16px; + line-height: 55px; + padding: 0; + width: 43px; } + +header .form-inline { + background: #131c21; + display: none; + height: 55px; + margin: 0; + width: 100%; + position: absolute; + left: 0; + top: 0; + z-index: 9999; } + header .form-inline .search-form { + height: 100%; + max-width: 1025px; + margin: 0 auto; + position: relative; } + header .form-inline .search-form input[type="text"] { + background: #131c21; + border: none; + border-radius: 0; + -webkit-box-shadow: none; + box-shadow: none; + color: #d3d3d3; + font-size: 16px; + height: inherit; + margin-right: 0 !important; + padding: 10px 36px 10px 15px; + width: 100%; } + header .form-inline .search-form input[type="text"].active, + header .form-inline .search-form input[type="text"]:focus { + border-color: rgba(0, 0, 0, 0.125); + outline: 0; } + header .form-inline .search-form button { + background: transparent; + border: none; + color: #fff; + font-size: 16px; + position: absolute; + right: 15px; + top: 50%; + margin-top: -14px !important; } + header .form-inline .search-form button:active, + header .form-inline .search-form button:focus, + header .form-inline .search-form button:visited, + header .form-inline .search-form .btn-outline-success:hover { + background: transparent; + border: none !important; + -webkit-box-shadow: none; + box-shadow: none; + outline: 0 !important; } + header .form-inline .search-form.close { + display: none; } + +.header-left { + display: inline-block; } + +.header-left.open .form-inline { + display: block; } + +.header-left .dropdown { + display: inline-block; } + .header-left .dropdown .dropdown-toggle { + background: transparent; + border: none; + color: #99abb4; + font-size: 16px; + line-height: 55px; + padding-top: 0; + padding-bottom: 0; } + .header-left .dropdown .dropdown-toggle:after { + display: none; } + .header-left .dropdown .dropdown-toggle .count { + border-radius: 50%; + color: #fff; + font-size: 11px; + height: 15px; + width: 15px; + line-height: 15px; + right: 0; + top: 12px; + position: absolute; } + .header-left .dropdown .dropdown-toggle:active, .header-left .dropdown .dropdown-toggle:focus, .header-left .dropdown .dropdown-toggle:visited { + background: none !important; + border-color: transparent !important; + color: #292b35 !important; } + .header-left .dropdown .dropdown-menu { + background: #fff; + border: none; + border-radius: 0; + -webkit-box-shadow: none; + box-shadow: none; + top: 52px !important; + left: inherit !important; + right: 0 !important; + -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05); + box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05); + line-height: 35px; } + .header-left .dropdown .dropdown-menu p { + font-size: 15px; + margin: 0; + padding: 5px 15px; } + .header-left .dropdown .dropdown-menu .dropdown-item { + color: #99abb4; + font-size: 13px; + padding: 10px 15px 3px; + text-overflow: ellipsis; + -webkit-transition: all .25s; + transition: all .25s; } + .header-left .dropdown .dropdown-menu .dropdown-item:hover { + background: rgba(233, 236, 239, 0.5); } + .header-left .dropdown .dropdown-menu .dropdown-item .photo { + float: left; + margin-right: 15px; + width: 25px; } + .header-left .dropdown .dropdown-menu .dropdown-item .message .name { + margin-top: -5px; } + .header-left .dropdown .dropdown-menu .dropdown-item .message .time { + font-size: 11px; } + .header-left .dropdown .dropdown-menu .dropdown-item .message p { + clear: both; + font-size: 14px; + margin: 0; + padding: 0; + text-overflow: ellipsis; } + +.header-menu { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; } + .header-menu .dropdown { + line-height: 55px; + margin-top: 0 !important; } + .header-menu .dropdown .dropdown-toggle { + line-height: 55px; } + +.user-area .dropdown-toggle { + position: relative; + z-index: 0; } + .user-area .dropdown-toggle:before { + content: ""; + position: absolute; + right: -3px; + bottom: 10px; + background: #868e96; + width: 11px; + height: 11px; + border-radius: 100%; + border: 2px solid white; + z-index: 1; } + .user-area .dropdown-toggle.active:before { + background: #49a342; } + +.dropdown-menu { + border-radius: 0; + -webkit-transform: none !important; + transform: none !important; } + +.for-notification .dropdown-menu .dropdown-item { + padding: 5px 15px !important; + text-overflow: ellipsis; } + .for-notification .dropdown-menu .dropdown-item i { + float: left; + font-size: 14px; + margin: 5px 5px 0 0; + text-align: left; + width: 20px; } + .for-notification .dropdown-menu .dropdown-item p { + padding: 0 !important; + text-overflow: ellipsis; } + +.user-area { + float: right; + padding-right: 0; + position: relative; + padding-left: 20px; } + .user-area .user-menu { + background: #fff; + border: none; + left: inherit !important; + right: 0; + top: 54px !important; + margin: 0; + max-width: 150px; + padding: 5px 10px; + position: absolute; + width: 100%; + z-index: 999; + min-width: 150px; + -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05); + box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05); } + .user-area .user-menu .nav-link { + color: #607d8b; + display: block; + font-size: 13px; + line-height: 22px; + padding: 5px 0; } + .user-area .user-menu .nav-link > i { + margin-right: 10px; } + .user-area .user-avatar { + float: right; + width: 40px; } + .user-area .user-info .name { + color: #8c8c8c; + font-size: 14px; + position: relative; + text-transform: uppercase; } + .user-area .count { + background: #d9534f; + border-radius: 50%; + color: #fff; + font-family: 'Open Sans'; + font-size: 9px; + font-weight: 700; + float: right; + height: 20px; + width: 20px; + line-height: 20px; + text-align: center; } + .user-area .dropdown-toggle { + line-height: 55px; + height: 55px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .user-area .dropdown-toggle:after { + display: none; } + +#menuToggle2 { + padding-left: 25px; } + +#language-select { + color: #f1f2f7; + float: right; + margin: 7px 20px 0 0; + max-width: 80px; } + #language-select:focus, #language-select:visited { + border: none; + outline: 0; } + #language-select .flag-icon { + line-height: 55px; } + #language-select .dropdown-toggle::after { + display: none; } + #language-select .dropdown-menu { + background: #fff; + border: none; + border-radius: 0; + left: -8px !important; + min-width: inherit; + padding: 0 5px; + top: 81px !important; } + #language-select .dropdown-menu .dropdown-item { + line-height: 1.5; + margin-right: 0; + max-width: 25px; + padding: 0; } + #language-select .dropdown-menu .dropdown-item:hover { + background: #fff; } + #language-select .dropdown-menu .dropdown-item .flag-icon { + line-height: 1.5; + margin-right: 0; + width: 25px; } + +.notification-show + .dropdown-menu, +.message-show + .dropdown-menu, +.language-show + .dropdown-menu { + display: block; } + +.content { + float: left; + padding: 1.875em; + width: 100%; } + +.card { + margin-bottom: 1.875em; + border-radius: 5px; + padding: 0; + border: 0px solid transparent; + -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08); + box-shadow: 0 0 20px rgba(0, 0, 0, 0.08); } + .card .box-title { + font-weight: 600; + font-size: 1em; + padding: 5px 0; } + .card .weather-title.box-title { + padding: 0 15px; + line-height: 50px; + background: #fff; + border-radius: 5px 5px 0 0; } + .card.weather-box .card-body { + padding-top: 0; } + .card.weather-box .top { + background: #eceff1; + margin-left: -20px; + margin-right: -20px; + padding: 20px; + padding-top: 22px; + overflow: hidden; } + .card.weather-box .top .wi { + float: left; + width: 100px; + text-align: left; + padding-bottom: 10px; } + .card.weather-box .top .wi:before { + font-size: 60px; } + .card.weather-box .top .updates { + font-size: 14px; + text-align: right; } + .card.weather-box .top .currently { + font-size: 22px; + text-align: right; } + .card.weather-box .middle { + clear: both; + position: relative; + height: 80px; + color: #333648; } + .card.weather-box .middle .city { + padding-top: 15px; + width: 100%; + font-weight: 700; + font-size: 16px; } + .card.weather-box .middle .city span { + font-size: 14px; + display: block; + font-weight: 400; } + .card.weather-box .middle .temp { + position: absolute; + font-size: 34px; + top: 10px; + right: 0; } + .card.weather-box .middle .temp span { + font-size: 16px; } + .card.weather-box .nextdays { + clear: both; + padding-top: 22px; + text-align: center; + margin-left: -20px; + margin-right: -20px; + border-top: 1px solid #ededed; + background: #fff; + font-family: "Open Sans", sans-serif; } + .card.weather-box .nextdays .days { + display: inline-block; + width: 20%; + font-size: 14px; } + .card.weather-box .nextdays .days span { + display: block; } + .card .card-top, + .card .card-footer { + background: #fafafa; + border-bottom: 1px solid #e8e9ef; + float: left; + padding: .75em 1.125em; + width: 100%; } + .card .card-top .card-title, + .card .card-footer .card-title { + color: #343a40; + font-size: .875em; + font-weight: 600; + padding-top: 5px; + text-transform: capitalize; } + .card .card-top button, + .card .card-footer button { + background: none; + border: none; + -webkit-box-shadow: none; + box-shadow: none; + color: #868e96; + font-size: 12px; + padding: 0 5px; } + .card .card-top[class*="bg"] .card-title, + .card .card-footer[class*="bg"] .card-title { + color: #fff; } + .card .card-top[class*="bg"] button, + .card .card-footer[class*="bg"] button { + color: #fff; } + .card .card-top.p-0 .card-title, + .card .card-footer.p-0 .card-title { + padding: 1.125em; } + .card .card-top.bg-flat-color-1, + .card .card-footer.bg-flat-color-1 { + background: #5c6bc0; + border: none; } + .card .card-top.bg-flat-color-2, + .card .card-footer.bg-flat-color-2 { + background: #42a5f5; + border: none; } + .card .card-top.bg-flat-color-3, + .card .card-footer.bg-flat-color-3 { + background: #ffa726; + border: none; } + .card .card-top.bg-flat-color-4, + .card .card-footer.bg-flat-color-4 { + background: #ef5350; + border: none; } + .card .card-top.bg-flat-color-5, + .card .card-footer.bg-flat-color-5 { + background: #4dbd74; + border: none; } + .card .card-top.bg-flat-color-6, + .card .card-footer.bg-flat-color-6 { + background: #66bb6a; + border: none; } + .card .card-left { + width: 60%; } + .card .card-right { + width: 40%; } + .card .card-body { + float: left; + padding: 1.25em; + position: relative; + width: 100%; } + .card h4 { + font-size: 1.1rem; } + .card .user-header .media img { + border: 5px solid rgba(255, 255, 255, 0.3); + border-radius: 50%; + -webkit-border-radius: 50%; } + .card .card-header .card-actions button { + display: block; + float: left; + width: 50px; + padding: .75rem 0; + margin: 0 !important; + color: #fff; + outline: 0; + text-align: center; + background: transparent; + border: 0; + border-left: 1px solid rgba(120, 130, 140, 0.4); } + .card .card-footer { + padding: 0.65rem 1.25rem; + background-color: #f0f3f5; + border-top: 1px solid #c2cfd6; } + .card .card-footer ul li { + display: table-cell; + padding: 0 1rem; + text-align: center; } + .card .nav-tabs { + margin-bottom: -1px; } + .card .nav-tabs a { + border-radius: 0; + color: #b5bcc2; + font-size: 12px; + font-weight: 700; + padding: .25em .5em; + text-transform: uppercase; } + .card .nav-tabs a:hover { + border-color: transparent; } + .card .nav-tabs .active a { + border-color: #e8e9ef; + color: #868e96 !important; } + +.action-menu .dropdown-toggle i { + font-size: 12px; } +.action-menu .dropdown-toggle::after { + display: none; } + +.flotBar1, +.flotLine1 { + height: 75px; } + +.traffic-chart .ct-area { + fill-opacity: .7; } + +.traffic-chart .ct-series-a .ct-area, +.traffic-chart .ct-series-a .ct-slice-donut-solid, +.traffic-chart .ct-series-a .ct-slice-pie { + fill: #66bb6a; } + +.traffic-chart .ct-series-b .ct-area, +.traffic-chart .ct-series-b .ct-slice-donut-solid, +.traffic-chart .ct-series-b .ct-slice-pie { + fill: #ef5350; } + +.traffic-chart .ct-series-c .ct-area, +.traffic-chart .ct-series-c .ct-slice-donut-solid, +.traffic-chart .ct-series-c .ct-slice-pie { + fill: #5c6bc0; } + +.flotRealtime2 { + height: 445px; } + +.traffic-chart { + height: 34vh; } + +#flotBar2 { + height: 168px; } + +.gauge.g1 svg { + fill: #ffa726 !important; } + +#area_chart { + max-height: 280px; } + +#flotLine5 { + height: 50px; } + +#flotPie1 { + height: 90px; } + #flotPie1 .pieLabel { + display: none; } + #flotPie1 .legend tr { + padding-bottom: 5px; } + #flotPie1 .legendColorBox { + float: left; + margin: 2px 5px 0 0; } + #flotPie1 .legendColorBox > div { + border: none !important; } + #flotPie1 .legendLabel { + color: #868e96; + font-family: 'Open Sans'; + font-size: 12px; } + +/* Stats Table */ +.table-stats table { + font-family: 'Open Sans'; } + .table-stats table th, + .table-stats table td { + border: none; + border-bottom: 1px solid #e8e9ef; + color: #868e96; + font-size: 12px; + font-weight: normal; + padding: .75em 1.25em; + text-transform: uppercase; } + .table-stats table th img, + .table-stats table td img { + margin-right: 10px; + max-width: 45px; } + .table-stats table th .name, + .table-stats table td .name { + color: #343a40; + font-size: 14px; + text-transform: capitalize; } + .table-stats table td { + color: #343a40; + font-size: 14px; + font-weight: 600; + text-transform: capitalize; + vertical-align: middle; } + +/* Timeline */ +.timeline li { + font-family: 'Open Sans'; + list-style: none; + padding: 5px 0; + position: relative; } + .timeline li i { + border-radius: 50%; + color: #fff; + font-size: 12px; + height: 30px; + width: 30px; + line-height: 30px; + text-align: center; } + .timeline li span { + color: #868e96; + display: block; + font-size: 14px; } + .timeline li span a { + color: #343a40; } + .timeline li .time { + font-size: 12px; + padding-bottom: 15px; } + .timeline li img { + margin: 10px 5px 15px 0; + max-height: 40px; } +.timeline .media-body { + border-bottom: 1px solid #e8e9ef; } + +/* Weather */ +.widget .card-footer { + border-top-color: #e8e9ef; } +.widget .weather-footer li { + float: left; + position: relative; + width: 33.33%; } + .widget .weather-footer li:before { + content: ''; + background: #e8e9ef; + height: 32px; + width: 1px; + top: 5px; + right: 7.5px; + position: absolute; } + .widget .weather-footer li:last-child:before { + display: none; } + .widget .weather-footer li span { + display: block; } +.widget .pt-0 { + padding-top: 0 !important; } +.widget .social .rounded-circle { + max-width: 130px; + margin-top: -65px; } +.widget .social .weather-footer i { + color: #868e96; + font-size: 20px; + line-height: 1; + margin-top: -3px; } + +/* Tabs */ +.nav-tabs a.active { + color: #555; + cursor: default; + background-color: #fff; + border: 1px solid #ddd; + border-bottom-color: transparent; } +.nav-tabs .dropdown .dropdown-menu { + top: 100% !important; } + +.custom-tab .nav-tabs > a.active, +.custom-tab .nav-tabs > .active > a:focus, +.custom-tab .nav-tabs > li.active > a:hover { + border-color: transparent transparent; + color: #ff2e44; + position: relative; } + +.custom-tab .nav-tabs > a.active:after, +.custom-tab .nav-tabs > li.active > a:focus:after, +.custom-tab .nav-tabs > li.active > a:hover:after { + background: #ff2e44; + bottom: -1px; + content: ""; + height: 2px; + left: 0; + position: absolute; + right: 0; + width: 100%; + z-index: 999; } + +.card .card-header .card-actions { + float: right; } + .card .card-header .card-actions [class*="btn"] { + border-left: 1px solid rgba(120, 130, 140, 0.4); + color: #878787; + display: inline-block; + font-size: 16px; + float: left; + padding: 0 7px; + width: inherit; + text-align: center; } + +.social-buttons .card-body p button { + padding-top: 0; + padding-left: 0; + padding-bottom: 0; } +.social-buttons .only-icon .card-body p button { + padding: 0; } +.social-buttons .social i { + padding: 0 10px; + width: inherit !important; } +.social-buttons .only-text p button { + padding: 0 .5rem; } + +.buttons button { + margin: 2px 0; } + +/* Ribons */ +.corner-ribon { + text-align: center; + width: 71px; + height: 71px; + position: absolute; + right: 0; + top: 0; + font-size: 20px; } + +.corner-ribon i { + padding: 10px 0 0 35px; + color: #fff; } + +.twt-feed .wtt-mark { + color: rgba(255, 255, 255, 0.15); + font-size: 160px; + position: absolute; + top: 10px; + left: 40%; } + +.twt-feed { + -webkit-border-radius: 4px 4px 0 0; + color: #FFFFFF; + padding: 40px 10px 10px; + position: relative; + min-height: 170px; } + +.weather-category { + padding: 15px 0; + color: #74829C; } + .weather-category ul li { + width: 32%; + text-align: center; + border-right: 1px solid #e6e6e6; + display: inline-block; } + +.twt-feed.blue-bg { + background: #58C9F3; } + +.twt-category { + display: inline-block; + margin-bottom: 11px; + margin-top: 10px; + width: 100%; } + .twt-category ul li { + color: #bdbdbd; + font-size: 13px; } + +.twt-footer { + padding: 12px 15px; } + +.twt-footer, .twt-footer a { + color: #d2d2d2; } + +/* Button Reset */ +.btn, .button { + display: inline-block; + font-weight: 400; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -webkit-transition: all .15s ease-in-out; + transition: all .15s ease-in-out; + border-radius: 3; + cursor: pointer; } + +/* Icons */ +.icon-section { + margin: 0 0 3em; + clear: both; + overflow: hidden; } + +.icon-container { + width: 240px; + padding: .7em 0; + float: left; + position: relative; + text-align: left; } + +.icon-container [class^="ti-"], +.icon-container [class*=" ti-"] { + color: #000; + position: absolute; + margin-top: 3px; + -webkit-transition: .3s; + transition: .3s; } + +.icon-container:hover [class^="ti-"], +.icon-container:hover [class*=" ti-"] { + font-size: 2.2em; + margin-top: -5px; } + +.icon-container:hover .icon-name { + color: #000; } + +.icon-name { + color: #aaa; + margin-left: 35px; + font-size: 14px; + -webkit-transition: .3s; + transition: .3s; } + +.icon-container:hover .icon-name { + margin-left: 45px; } + +.fontawesome-icon-list .page-header { + border-bottom: 1px solid #C9CDD7; + padding-bottom: 9px; + margin: 30px 0px 27px 0px; } +.fontawesome-icon-list h2 { + margin-top: 0; + font-size: 20px; + font-weight: 300; } +.fontawesome-icon-list i { + font-style: 16px; + padding-right: 10px; } + +.social-box i { + line-height: 110px; } +.social-box ul { + display: inline-block; + margin: 7px 0 0; + padding: 10px; + width: 100%; } + .social-box ul li { + color: #949CA0; + font-size: 14px; + font-weight: 700; + padding: 0 10px 0 0; + text-align: right; } + .social-box ul li:last-child { + padding-left: 10px; + padding-right: 0; + text-align: left; } + .social-box ul li span { + font-size: 14px; } + +.login-logo { + text-align: center; + margin-bottom: 15px; } + .login-logo span { + color: #ffffff; + font-size: 24px; } + +.login-content { + max-width: 540px; + margin: 8vh auto; } + +.login-form { + background: #ffffff; + padding: 30px 30px 20px; + border-radius: 2px; } + +.login-form h4 { + color: #878787; + text-align: center; + margin-bottom: 50px; } + +.login-form .checkbox { + color: #878787; } + +.login-form .checkbox label { + text-transform: none; } + +.login-form .btn { + width: 100%; + text-transform: uppercase; + font-size: 14px; + padding: 15px; + border: 0px; } + +.login-form label { + color: #878787; + text-transform: uppercase; } + +.login-form label a { + color: #ff2e44; } + +.social-login-content { + margin: 0px -30px; + border-top: 1px solid #e7e7e7; + border-bottom: 1px solid #e7e7e7; + padding: 30px 0px; + background: #fcfcfc; } + +.social-button { + padding: 0 30px; } + .social-button .facebook { + background: #3b5998; + color: #fff; } + .social-button .facebook:hover { + background: #344e86; } + .social-button .twitter { + background: #00aced; + color: #fff; } + .social-button .twitter:hover { + background: #0099d4; } + +.social-button i { + padding: 19px; } + +.register-link a { + color: #ff2e44; } + +.cpu-load { + width: 100%; + height: 272px; + font-size: 14px; + line-height: 1.2em; } + +.cpu-load-data-content { + font-size: 18px; + font-weight: 400; + line-height: 40px; } + +.cpu-load-data { + margin-bottom: 30px; } + +.cpu-load-data li { + display: inline-block; + width: 32.5%; + text-align: center; + border-right: 1px solid #e7e7e7; } + +.cpu-load-data li:last-child { + border-right: 0px; } + +.nestable-cart { + overflow: hidden; } + +/* Forms */ +.input-group-addon { + background-color: transparent; + border-left: 0; } + +.input-group-addon, .input-group-btn { + white-space: nowrap; + vertical-align: middle; } + +.input-group-addon { + padding: .5rem .75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.25; + color: #495057; + text-align: center; + background-color: #e9ecef; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: .25rem; } + +.flotTip { + background: #252525; + border: 1px solid #252525; + padding: 5px 15px; + color: #ffffff; } + +.flot-container { + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 100%; + height: 275px; + padding: 20px 15px 15px; + margin: 15px auto 30px; + background: transparent; } + +.flot-pie-container { + height: 275px; } + +.flotBar-container { + height: 275px; } + +.flot-line { + width: 100%; + height: 100%; + font-size: 14px; + line-height: 1.2em; } + +.legend table { + border-spacing: 5px; } + +#chart1, +#flotBar, +#flotCurve { + width: 100%; + height: 275px; } + +.morris-hover { + position: absolute; + z-index: 1; } + +.morris-hover.morris-default-style .morris-hover-row-label { + font-weight: bold; + margin: 0.25em 0; } + +.morris-hover.morris-default-style .morris-hover-point { + white-space: nowrap; + margin: 0.1em 0; } + +.morris-hover.morris-default-style { + border-radius: 2px; + padding: 10px 12px; + color: #666; + background: rgba(0, 0, 0, 0.7); + border: none; + color: #fff !important; } + +.morris-hover-point { + color: rgba(255, 255, 255, 0.8) !important; } + +#morris-bar-chart { + height: 285px; } + +.map, .vmap { + width: 100%; + height: 400px; } + +.btn-toolbar { + float: left !important; } + .btn-toolbar .btn-outline-secondary:not([disabled]):not(.disabled):active, + .btn-toolbar .btn-outline-secondary:not([disabled]):not(.disabled).active, + .btn-toolbar .show > .btn-outline-secondary.dropdown-toggle { + background-color: #212529; + border-color: #212529; + -webkit-box-shadow: none; + box-shadow: none; + color: #fff; } + .btn-toolbar .btn-outline-secondary:hover { + background-color: #212529; + border-color: #212529; + color: #fff; } + +/* Widget One +---------------------------*/ +.dib { + display: inline-block; } + +.stat-widget-one .stat-icon { + vertical-align: top; } + +.stat-widget-one .stat-icon i { + font-size: 30px; + border-width: 3px; + border-style: solid; + border-radius: 100px; + padding: 15px; + font-weight: 900; + display: inline-block; } + +.stat-widget-one .stat-content { + margin-left: 30px; + margin-top: 7px; } + +.stat-widget-one .stat-text { + font-size: 14px; + color: #868e96; } + +.stat-widget-one .stat-digit { + font-size: 24px; + color: #373757; } + +/* Widget Two +---------------------------*/ +.stat-widget-two { + text-align: center; } + +.stat-widget-two .stat-digit { + font-size: 1.75rem; + font-weight: 500; + color: #373757; } + +.stat-widget-two .stat-digit i { + font-size: 18px; + margin-right: 5px; } + +.stat-widget-two .stat-text { + font-size: 16px; + margin-bottom: 5px; + color: #868e96; } + +.stat-widget-two .progress { + height: 8px; + margin-bottom: 0; + margin-top: 20px; + -webkit-box-shadow: none; + box-shadow: none; } + +.stat-widget-two .progress-bar { + -webkit-box-shadow: none; + box-shadow: none; } + +/* Widget Three +---------------------------*/ +.stat-widget-three .stat-icon { + display: inline-block; + padding: 33px; + position: absolute; + line-height: 21px; } + +.stat-widget-three .stat-icon i { + font-size: 30px; + color: #ffffff; } + +.stat-widget-three .stat-content { + text-align: center; + padding: 15px; + margin-left: 90px; } + +.stat-widget-three .stat-digit { + font-size: 30px; } + +.stat-widget-three .stat-text { + padding-top: 4px; } + +.home-widget-three .stat-icon { + line-height: 19px; + padding: 27px; } + +.home-widget-three .stat-digit { + font-size: 24px; + font-weight: 300; + color: #373757; } + +.home-widget-three .stat-content { + text-align: center; + margin-left: 60px; + padding: 13px; } + +/* Widget Four +---------------------------*/ +.stat-widget-four { + position: relative; } + .stat-widget-four .stat-icon { + display: inline-block; + position: absolute; + top: 5px; } + .stat-widget-four i { + display: block; + font-size: 36px; } + .stat-widget-four .stat-content { + margin-left: 40px; + text-align: center; } + .stat-widget-four .stat-heading { + font-size: 20px; } + +/* Widget Five +---------------------------*/ +.stat-widget-five { + min-height: 60px; } + .stat-widget-five .stat-icon { + font-size: 50px; + line-height: 50px; + position: absolute; + left: 30px; + top: 20px; } + .stat-widget-five .stat-content { + margin-left: 100px; } + .stat-widget-five .stat-text { + color: #455a64; + font-size: 20px; } + .stat-widget-five .stat-heading { + color: #99abb4; + font-size: 14px; } + +.horizontal:before { + background: #ffffff; + bottom: 0; + content: ""; + height: 38px; + left: 0; + margin: 0 auto; + position: absolute; + right: 0; + width: 1px; } + +/* Mixed Styles */ +.badges h1, .badges h2, .badges h3, .badges h4, .badges h5, .badges h6 { + margin: 5px 0; } + +.vue-lists ul, .vue-lists ol { + padding-left: 30px; } + +.card .dropdown.float-right .dropdown-menu { + left: inherit !important; + right: 0 !important; + top: 93% !important; } + +.dataTables_paginate .pagination { + border-radius: 0; } + .dataTables_paginate .pagination li { + border-radius: 0 !important; } + .dataTables_paginate .pagination li a { + border-radius: 0 !important; + color: #292b35; } + .dataTables_paginate .pagination li.active a { + background: #292b35; + border-color: #292b35; + color: #fff; } + .dataTables_paginate .pagination li:hover a { + background: #292b35; + border-color: #292b35; + color: #fff; } + +/* Footer */ +footer.site-footer { + padding: 0 1.875em; } + footer.site-footer .footer-inner { + color: #78909c; + font-family: 'Open Sans'; + font-size: 14px; + line-height: 1.5; + padding: 2.45em 1.125em; } + footer.site-footer .footer-inner a { + color: #6a7074; } + +.calender-cont { + position: relative; + padding-top: 20px; } + .calender-cont .fc-title { + color: #fff; } + .calender-cont .fc-center { + position: absolute; + top: 0; + left: 0; } + .calender-cont .fc-center h2 { + font-size: 16px; + font-weight: 700; } + .calender-cont td .fc-event { + border: 0px solid transparent; + padding: 1px; } + .calender-cont td .fc-time { + color: white; + font-weight: 400; + font-size: 11px; + padding: 2px; } + .calender-cont .fc-left .fc-button-group { + position: absolute; + top: 0; + right: 0; } + .calender-cont .fc-left .fc-button-group button { + height: 20px; + width: 20px; + line-height: 18px; + padding: 0; + border: 0px solid transparent; + background: #eceff1; + color: #889196; } + .calender-cont .fc-left .fc-button-group button.fc-prev-button { + margin-right: 4px; } + .calender-cont .fc-left .fc-button-group button .fc-icon { + font-size: 11px; } + .calender-cont .fc-left .fc-button-group button:hover { + background: #d8d8d8; } + .calender-cont.widget-calender { + padding-top: 20px; } + .calender-cont.widget-calender td, .calender-cont.widget-calender th { + font-size: 14px; + border: 0px solid transparent; } + .calender-cont.widget-calender .fc-right { + display: none; } + .calender-cont.widget-calender .fc-today-button { + display: none; } + .calender-cont.widget-calender .fc-widget-content { + height: 45px !important; + min-height: 45px !important; } + .calender-cont.widget-calender .fc-day-grid-container { + max-height: 250px !important; + overflow: hidden !important; } + +@media (max-width: 1680px) { + .timeline li { + padding: 2px 0; } } +@media (max-width: 1368px) { + .twt-category { + margin-bottom: 0; } + + .twt-feed { + max-height: 155px; } + .twt-feed img { + height: 75px; + width: 75px; } + + .stat-widget-one .stat-content { + margin-left: 15px; } + + .card-body { + padding: 15px; } + + .badges button { + margin: 2px 0; } + + #g2 { + padding-top: 33px; } + + .timeline li .time { + padding-bottom: 10px; } + + .height-93 { + height: 75px; } + + .height-100 { + height: 90px; } + + .widget .row.p-4.height-93 { + padding: 1.125em 1.75em !important; } + .widget .card-footer.p-3.bg-white.text-center { + padding: .9em !important; } + + .weather h3.fw-r.text-white { + font-size: 1.125em; } + .weather span { + font-size: 12px; } } +@media (max-width: 1024px) { + .open aside.left-panel { + width: 280px; + max-width: 280px; } + + aside.left-panel:hover { + overflow-x: inherit; } + + aside.left-panel.open-menu { + overflow-x: scroll; } + + aside.left-panel { + max-width: 83px; + width: 83px; } + aside.left-panel .navbar .navbar-header { + padding: 0; } + aside.left-panel .navbar .navbar-brand { + display: none; } + aside.left-panel .navbar .navbar-brand.hidden { + padding: 0 0 10px; + text-align: center; + width: 100%; } + aside.left-panel .navbar .navbar-brand.hidden img { + max-width: 100%; + margin: 0 auto; } + aside.left-panel .navbar .navbar-brand.d-md-none { + margin: 13px 0 0; + min-height: 67px; + padding: 0; + text-align: center; } + aside.left-panel .navbar .navbar-nav:before { + display: none !important; } + aside.left-panel .navbar .navbar-nav li { + position: relative; } + aside.left-panel .navbar .navbar-nav li a { + font-size: 0; + z-index: 0; + -webkit-transition: none; + transition: none; } + aside.left-panel .navbar .navbar-nav li a .menu-icon { + font-size: 20px; + z-index: -1; + text-align: center; + width: inherit; } + aside.left-panel .navbar .navbar-nav li a .menu-title-text { + font-size: 0; } + aside.left-panel .navbar .navbar-nav li a .badge { + display: none; } + aside.left-panel .navbar .navbar-nav li > a { + max-width: 60px; + padding-left: 0; } + aside.left-panel .navbar .navbar-nav li.menu-item-has-children { + overflow: hidden; } + aside.left-panel .navbar .navbar-nav li.menu-item-has-children a:before { + content: ''; + display: none; } + aside.left-panel .navbar .navbar-nav li.menu-item-has-children ul { + padding-left: 0; } + aside.left-panel .navbar .navbar-nav li.menu-item-has-children .sub-menu { + display: block; + left: inherit; + right: -160px; + top: 0; } + aside.left-panel .navbar .navbar-nav li.menu-item-has-children .sub-menu li a { + display: block; + font-size: 14px; + max-width: inherit; + padding: 2px 15px 2px 35px; + width: 100%; } + aside.left-panel .navbar .navbar-nav li.menu-item-has-children .sub-menu li a .menu-icon { + text-align: center; } + aside.left-panel .navbar .navbar-nav li.menu-item-has-children .sub-menu i { + left: 10px; } + aside.left-panel .navbar .navbar-nav li.menu-item-has-children.show { + overflow: visible; } + aside.left-panel .navbar .navbar-nav li.menu-item-has-children.show .sub-menu { + position: absolute !important; } + aside.left-panel .navbar .navbar-nav li span.count { + display: none; + margin-right: 5px; + z-index: 1; } + aside.left-panel .navbar .navbar-nav li.active a:after { + content: ''; + display: none; } + aside.left-panel .navbar .navbar-nav .menu-title { + font-size: 0; + line-height: 0; + opacity: 0; + padding: 0; } + aside.left-panel .menutoggle { + display: none; } + aside.left-panel.open-menu { + max-width: 280px; + width: 280px; } + aside.left-panel.open-menu .navbar .navbar-nav li > a { + width: 100%; + max-width: 100%; + font-size: 14px; } + aside.left-panel.open-menu .navbar .navbar-nav li > a .menu-icon { + width: 55px; + font-size: inherit; + text-align: left; } + aside.left-panel.open-menu .navbar .navbar-nav li.menu-item-has-children.show .sub-menu { + position: static !important; + margin-left: 45px; } + aside.left-panel.open-menu .navbar .navbar-nav .menu-title { + padding-left: 30px; + padding-right: 30px; + font-size: 14px; + line-height: 50px; + opacity: 1; } + + .navbar .main-menu { + padding: 0; } + + #language-select, + .user-area .dropdown-toggle, + header .form-inline { + height: 48px; } + + .header-left .dropdown .dropdown-menu { + top: 47px !important; } + + #language-select .dropdown-menu { + top: 49px !important; } + + .user-area .user-menu { + top: 51px !important; } + + .content { + padding: 1.25em; } + + .flotRealtime2 { + height: 330px; } + + .card { + margin-bottom: 1.25em; } + .card .card-header { + position: relative; } + .card .card-header strong { + display: block; } + .card .card-header small { + float: left; } + .card .card-header .card-actions { + right: 0; + top: .75rem; + position: absolute; } + + .card-footer.bg-white.br-0.pl-5.pr-5.pt-0.pb-5 { + padding-bottom: 1.5em !important; + padding-left: 1em !important; + padding-right: 1em !important; } + + #g2 { + height: auto !important; + padding-top: 7px; } + + #flotBar2 { + height: 150px; } + + #g1 { + margin-top: 0 !important; + margin-bottom: 0 !important; + padding-top: 0 !important; } + + .card-footer.bg-white [class*="float"] { + display: block; + float: none !important; + text-align: center; } + .card-footer.bg-white [class*="float"].currency { + display: inline-block; } + .card-footer.bg-white [class*="float"].fa { + display: inline-block; + float: left !important; } + + #traffic-chart { + height: 232px !important; } + + i.p-4.font-3xl.width-90.text-center.mr-3.float-left.text-light { + font-size: 1.8125em; + width: 75px; } + + .card i + h4 { + display: inline; + padding-top: 1em !important; } + + .timeline li img { + margin: 0px 5px 5px 0; } + + .timeline li span { + padding-bottom: 8px !important; } + + .card-footer.bg-white.br-0.pl-5.pr-5.pt-1.pb-4.mb-3 { + padding-left: 1em !important; + padding-right: 1em !important; } + + .font-4xl { + font-size: 2.75em; } + + .media.p-4.height-100, + .widget .row.p-4.height-93 { + padding: 1rem !important; } + + .height-100 { + height: 63px; } + + .widget .social .rounded-circle { + max-width: 60px; + margin-top: 8px; } + + footer.site-footer { + padding: 0 1.125em; } + footer.site-footer .footer-inner { + padding: 1.75em 1em; } } +@media (max-width: 992px) { + [class*="col"].no-padding { + -webkit-box-flex: 0; + -ms-flex: none; + flex: none; } } +@media (max-width: 768px) { + .navbar { + height: 100vh; } + .navbar .navbar-nav li.menu-item-has-children > a:before { + display: block !important; } + .navbar .main-menu { + float: none; + padding-bottom: 70px; } + + .left-panel { + display: none; } + + aside.left-panel { + overflow: scroll; } + + .right-panel header.header { + height: 62px; } + .right-panel .top-left, .right-panel .top-right { + width: 100%; + float: none; + background: white; } + .right-panel .menutoggle { + float: right; } + .right-panel .navbar-header { + padding: 0; } + .right-panel header.header { + position: static; } + .right-panel header.header .top-left { + position: fixed; + top: 0; + left: 0; + right: 0; + padding: 0 30px; + z-index: 999; + border-bottom: 1px solid #dcdcdc; } + .right-panel header.header .top-right { + padding: 0 30px; } + + .small-device .right-panel { + margin-left: 0; } + + #left-panel { + max-width: 100%; + width: 100%; } + #left-panel .navbar .navbar-nav li > a { + max-width: inherit; + font-size: 14px; } + #left-panel .navbar .navbar-nav li > a .menu-icon { + width: 55px; + text-align: left; + font-size: 14px; } + #left-panel .navbar .navbar-nav li.menu-item-has-children.show .sub-menu { + position: static !important; + padding-left: 50px; } + + .orders { + overflow: hidden; } + + .order-table .avatar, .order-table .serial { + display: none; } } +@media (max-width: 575px) { + #left-panel .navbar { + display: inherit; } + #left-panel .navbar .main-menu { + display: inherit; } + #left-panel .navbar .sub-menu.children { + display: none; } + #left-panel .navbar .sub-menu.children.show { + display: block; } + + .right-panel .navbar-brand { + width: 220px; + padding-bottom: 5px; } + .right-panel .menutoggle { + width: 20px; } } +#cellPaiChart { + height: 160px; } + #cellPaiChart .pieLabel { + top: 50px !important; } + #cellPaiChart .pieLabel div { + font-size: 16px !important; } + #cellPaiChart #pieLabel1 { + left: 20px !important; } + #cellPaiChart #pieLabel0 { + left: inherit !important; + right: 20px !important; } + +/*# sourceMappingURL=style.css.map */ \ No newline at end of file diff --git a/public/asset/css/style.css.map b/public/asset/css/style.css.map new file mode 100644 index 0000000..3144588 --- /dev/null +++ b/public/asset/css/style.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "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", +"sources": ["../scss/style.scss","../scss/variables.scss","../scss/todo-list.scss"], +"names": [], +"file": "style.css" +} diff --git a/public/asset/fonts/icomoon/icomoon.eot b/public/asset/fonts/icomoon/icomoon.eot new file mode 100644 index 0000000000000000000000000000000000000000..3fb23a985c0b633395b3cb3df8240c1bcac108fe GIT binary patch literal 5036 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 + + +Generated by Fontastic.me + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/asset/fonts/icomoon/icomoon.ttf b/public/asset/fonts/icomoon/icomoon.ttf new file mode 100644 index 0000000000000000000000000000000000000000..83cc9cf5690aa06852ac5e4010e598bded2a1d7d GIT binary patch literal 4872 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 literal 0 HcmV?d00001 diff --git a/public/asset/fonts/icomoon/icomoon.woff b/public/asset/fonts/icomoon/icomoon.woff new file mode 100644 index 0000000000000000000000000000000000000000..e0dae65eebcd5b2bcfcd2579d206a851c0cb572a GIT binary patch literal 3492 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 literal 0 HcmV?d00001 diff --git a/public/asset/fonts/icomoon/index.html b/public/asset/fonts/icomoon/index.html new file mode 100644 index 0000000..e69de29 diff --git a/public/asset/js/dashboard.js b/public/asset/js/dashboard.js new file mode 100644 index 0000000..0a82e77 --- /dev/null +++ b/public/asset/js/dashboard.js @@ -0,0 +1,514 @@ +( function ( $ ) { + "use strict"; + + // Flot Charts + + $.plot("#flotBar1", [{ + data: [[0, 3], [2, 8], [4, 5], [6, 13],[8,5], [10,7],[12,4], [14,6]], + bars: { + show: true, + lineWidth: 0, + fillColor: '#85c988' + } +}], { + grid: { + show: false, + hoverable: true + } +}); + + + $.plot("#flotBar2", [{ + data: [[0, 3], [2, 8], [4, 5], [6, 13],[8,5], [10,7],[12,4], [14,6]], + bars: { + show: true, + lineWidth: 0, + fillColor: '#f58f8d' + } +}], { + grid: { + show: false + } +}); + + + + var plot = $.plot($('#flotLine1'),[{ + data: [[0, 1], [1, 3], [2,6], [3, 5], [4, 7], [5, 8], [6, 10]], + color: '#fff' +}], +{ + series: { + lines: { + show: false + }, + splines: { + show: true, + tension: 0.4, + lineWidth: 2 + //fill: 0.4 + }, + shadowSize: 0 + }, + points: { + show: false, + }, + legend: { + noColumns: 1, + position: 'nw' + }, + grid: { + hoverable: true, + clickable: true, + show: false + }, + yaxis: { + min: 0, + max: 10, + color: '#eee', + font: { + size: 10, + color: '#6a7074' + } + }, + xaxis: { + color: '#eee', + font: { + size: 10, + color: '#6a7074' + } + } + }); + + + var plot = $.plot($('#flotLine2'),[{ + data: [[0, 8], [1, 5], [2,7], [3, 8], [4, 7], [5, 10], [6, 8], [7, 5], [8, 8], [9, 6], [10, 4]], + label: 'New Data Flow', + color: '#42a5f5' +}], +{ + series: { + lines: { + show: false + }, + splines: { + show: true, + tension: 0.4, + lineWidth: 1, + fill: 0.25 + }, + shadowSize: 0 + }, + points: { + show: false + }, + legend: { + show: false + }, + grid: { + show: false + } +}); + + var plot = $.plot($('#flotLine3'),[{ + data: [[0, 8], [1, 5], [2,7], [3, 8], [4, 7], [5, 10], [6, 8], [7, 5], [8, 8], [9, 6], [10, 4]], + label: 'New Data Flow', + color: '#ffa726' +}], +{ + series: { + lines: { + show: false + }, + splines: { + show: true, + tension: 0.4, + lineWidth: 1, + fill: 0.25 + }, + shadowSize: 0 + }, + points: { + show: false + }, + legend: { + show: false + }, + grid: { + show: false + } +}); + + var plot = $.plot($('#flotLine4'),[{ + data: [[0, 8], [1, 5], [2,7], [3, 8], [4, 7], [5, 10], [6, 8], [7, 5], [8, 8], [9, 6], [10, 4]], + label: 'New Data Flow', + color: '#5c6bc0' +}], +{ + series: { + lines: { + show: false + }, + splines: { + show: true, + tension: 0.4, + lineWidth: 1, + fill: 0.25 + }, + shadowSize: 0 + }, + points: { + show: false + }, + legend: { + show: false + }, + grid: { + show: false + } +}); + + + var newCust = [[0, 3], [1, 5], [2,4], [3, 7], [4, 9], [5, 3], [6, 6], [7, 4], [8, 10]]; + + var plot = $.plot($('#flotLine5'),[{ + data: newCust, + label: 'New Data Flow', + color: '#fff' +}], +{ + series: { + lines: { + show: true, + lineColor: '#fff', + lineWidth: 1 + }, + points: { + show: true, + fill: true, + fillColor: "#ffffff", + symbol: "circle", + radius: 3 + }, + shadowSize: 0 + }, + points: { + show: true, + }, + legend: { + show: false + }, + grid: { + show: false + } +}); + + + /**************** PIE CHART *******************/ + var piedata = [ + { label: "Desktop visits", data: [[1,32]], color: '#5c6bc0'}, + { label: "Tab visits", data: [[1,33]], color: '#ef5350'}, + { label: "Mobile visits", data: [[1,35]], color: '#66bb6a'} + ]; + + $.plot('#flotPie1', piedata, { + series: { + pie: { + show: true, + radius: 1, + innerRadius: 0.4, + label: { + show: true, + radius: 2/3, + threshold: 1 + }, + stroke: { + width: 0.1 + } + } + }, + grid: { + hoverable: true, + clickable: true + } +}); + + +// Real Time Chart + + +var data = [], totalPoints = 50; + +function getRandomData() { + if (data.length > 0) + data = data.slice(1); + while (data.length < totalPoints) { + var prev = data.length > 0 ? data[data.length - 1] : 50, + y = prev + Math.random() * 10 - 5; + if (y < 0) { + y = 0; + } else if (y > 100) { + y = 100; + } + data.push(y); + } + var res = []; + for (var i = 0; i < data.length; ++i) { + res.push([i, data[i]]) + } + return res; +} + + + // Set up the control widget + var updateInterval = 1000; + + var plot5 = $.plot('#flotRealtime2', [ getRandomData() ], { + colors: ['#5c6bc0'], + + series: { + // label: 'Upload', + lines: { + show: true, + lineWidth: 0, + fill: 0.9 + }, + shadowSize: 0 // Drawing is faster without shadows + }, + grid: { + show: false + }, + xaxis: { + color: '#eee', + font: { + size: 10, + color: '#6a7074' + } + }, + yaxis: { + min: 0, + max: 100, + color: '#eee', + font: { + size: 10, + color: '#6a7074' + } + } + }); + + function update_plot5() { + plot5.setData([getRandomData()]); + plot5.draw(); + setTimeout(update_plot5, updateInterval); + } + + update_plot5(); + + +// Traffic Chart + + if ($('#traffic-chart').length) { + var chart = new Chartist.Line('#traffic-chart', { + labels: ['Jan', 'Feb', 'Mar', 'Apr', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], + series: [ + [13000, 18000, 35000, 18000, 25000, 26000, 22000, 20000, 18000, 35000, 18000, 25000], + [15000, 23000, 15000, 30000, 20000, 31000, 15000, 15000, 23000, 15000, 30000, 20000], + [25000, 15000, 38000, 25500, 15000, 22500, 30000, 25000, 15000, 38000, 25500, 15000] + ] + }, { + low: 0, + showArea: true, + showLine: false, + showPoint: false, + fullWidth: true, + axisX: { + showGrid: true + } + }); + + chart.on('draw', function(data) { + if(data.type === 'line' || data.type === 'area') { + data.element.animate({ + d: { + begin: 2000 * data.index, + dur: 2000, + from: data.path.clone().scale(1, 0).translate(0, data.chartRect.height()).stringify(), + to: data.path.clone().stringify(), + easing: Chartist.Svg.Easing.easeOutQuint + } + }); + } + }); + } + +/* Gauge Chart */ + + var g1; + + document.addEventListener("DOMContentLoaded", function(event) { + g1 = new JustGage({ + id: "g1", + value: 72, + //title: "Completed", + fill: '#ffa726', + symbol: '%', + min: 0, + max: 100, + donut: true, + gaugeWidthScale: 0.4, + counter: true, + hideInnerShadow: true + }); + + }); + + /* Sparkline Tab Charts */ + + $('#sparklinedash, #sparklinedash6, #sparklinedash11').sparkline([ 0, 5, 6, 10, 9, 12, 4, 9], { + type: 'bar', + height: '30', + barWidth: '5', + disableHiddenCheck: true, + resize: true, + barSpacing: '2', + barColor: '#42a5f5' + }); + + $('#sparklinedash2, #sparklinedash7, #sparklinedash12').sparkline([ 0, 5, 6, 10, 9, 12, 4, 9], { + type: 'bar', + height: '30', + barWidth: '5', + resize: true, + barSpacing: '2', + barColor: '#ef5350' + }); + $('#sparklinedash3, #sparklinedash8, #sparklinedash13').sparkline([ 0, 5, 6, 10, 9, 12, 4, 9], { + type: 'bar', + height: '30', + barWidth: '5', + resize: true, + barSpacing: '2', + barColor: '#66bb6a' + }); + $('#sparklinedash4, #sparklinedash9, #sparklinedash14').sparkline([ 0, 5, 6, 10, 9, 12, 4, 9], { + type: 'bar', + height: '30', + barWidth: '5', + resize: true, + barSpacing: '2', + barColor: '#5c6bc0' + }); + $('#sparklinedash5, #sparklinedash10, #sparklinedash15').sparkline([ 0, 5, 6, 10, 9, 12, 4, 9], { + type: 'bar', + height: '30', + barWidth: '5', + resize: true, + barSpacing: '2', + barColor: '#ffa726' + }); + + // Chartist + + var ctx = document.getElementById('area_chart').getContext('2d'); + + var chart = new Chart(ctx, { + // The type of chart we want to create + type: 'line', + + // The data for our dataset + data: { + labels: ["Jan", "Feb", "Mar", "Jun", "Jul", "Aug", "Sep"], + datasets: [{ + label: "My First dataset", + backgroundColor: 'transparent', + borderColor: '#4fabf5', + pointBackgroundColor: "#ffffff", + data: [5000, 2700, 8500, 5500, 4500, 4900, 3000] + }, + { + label: "My Second dataset", + backgroundColor: 'rgba(230,240,244,.5)', + borderColor: '#6ebe73', + pointBackgroundColor: "#ffffff", + data: [5500, 2900, 7000, 3500, 5000, 3300, 4800 ] + }, + { + label: "My Third dataset", + backgroundColor: 'transparent', + borderColor: '#5c6bc0', + pointBackgroundColor: "#ffffff", + data: [2700, 7000, 3500, 6900, 2600, 6500, 2200] + }] + }, + + // Configuration options go here + options: { + maintainAspectRatio: true, + legend: { + display: false + }, + + scales: { + xAxes: [{ + display: true + }], + yAxes: [{ + display: true, + gridLines: { + zeroLineColor: '#e8e9ef', + color: '#e8e9ef', + drawBorder: true + } + }] + + }, + elements: { + line: { + tension: 0.00001, + borderWidth: 1 + }, + point: { + radius: 4, + hitRadius: 10, + hoverRadius: 4, + borderWidth: 2 + } + } + } + }); + + + + +})( jQuery ); + + +/*Knob*/ + +if (Gauge) { + + var opts = { + lines: 12, // The number of lines to draw + angle: 0, // The length of each line + lineWidth: 0.05, // The line thickness + pointer: { + length: .75, // The radius of the inner circle + strokeWidth: 0.03, // The rotation offset + color: '#000' // Fill color + }, + limitMax: 'true', // If true, the pointer will not go past the end of the gauge + colorStart: '#42a5f5', // Colors + colorStop: '#42a5f5', // just experiment with them + strokeColor: '#fbfbfc', // to see which ones work best for you + generateGradient: true + }; + + + var target = document.getElementById('g2'); // your canvas element + var gauge = new Gauge(target).setOptions(opts); // create sexy gauge! + gauge.maxValue = 3000; // set max gauge value + gauge.animationSpeed = 32; // set animation speed (32 is default value) + gauge.set(1150); // set actual value + //gauge.setTextField(document.getElementById("gauge-textfield")); + + } \ No newline at end of file diff --git a/public/asset/js/init/chartjs-init.js b/public/asset/js/init/chartjs-init.js new file mode 100644 index 0000000..ac62924 --- /dev/null +++ b/public/asset/js/init/chartjs-init.js @@ -0,0 +1,418 @@ +( function ( $ ) { + "use strict"; + + //Team chart + var ctx = document.getElementById( "team-chart" ); + ctx.height = 150; + var myChart = new Chart( ctx, { + type: 'line', + data: { + labels: [ "2012", "2013", "2014", "2015", "2016", "2017", "2018" ], + type: 'line', + defaultFontFamily: 'Montserrat', + datasets: [ { + data: [ 0, 7, 3, 5, 2, 8, 6 ], + label: "Expense", + backgroundColor: 'rgba(0,200,155,.35)', + borderColor: 'rgba(0,200,155,0.60)', + borderWidth: 3.5, + pointStyle: 'circle', + pointRadius: 5, + pointBorderColor: 'transparent', + pointBackgroundColor: 'rgba(0,200,155,0.60)', + }, + { + data: [ 0, 6, 3, 4, 3, 7, 10 ], + label: "Profit", + backgroundColor: 'rgba(0,194,146,.25)', + borderColor: 'rgba(0,194,146,0.5)', + borderWidth: 3.5, + pointStyle: 'circle', + pointRadius: 5, + pointBorderColor: 'transparent', + pointBackgroundColor: 'rgba(0,194,146,0.5)', + }, ] + }, + options: { + responsive: true, + tooltips: { + mode: 'index', + titleFontSize: 12, + titleFontColor: '#000', + bodyFontColor: '#000', + backgroundColor: '#fff', + titleFontFamily: 'Montserrat', + bodyFontFamily: 'Montserrat', + cornerRadius: 3, + intersect: false, + }, + legend: { + display: false, + position: 'top', + labels: { + usePointStyle: true, + fontFamily: 'Montserrat', + }, + + + }, + scales: { + xAxes: [ { + display: true, + gridLines: { + display: false, + drawBorder: false + }, + scaleLabel: { + display: false, + labelString: 'Month' + } + } ], + yAxes: [ { + display: true, + gridLines: { + display: false, + drawBorder: false + }, + scaleLabel: { + display: true, + labelString: 'Value' + } + } ] + }, + title: { + display: false, + } + } + } ); + + + //Sales chart + var ctx = document.getElementById( "sales-chart" ); + ctx.height = 150; + var myChart = new Chart( ctx, { + type: 'line', + data: { + labels: [ "2012", "2013", "2014", "2015", "2016", "2017", "2018" ], + type: 'line', + defaultFontFamily: 'Montserrat', + datasets: [ { + label: "Foods", + data: [ 0, 30, 15, 110, 50, 63, 120 ], + backgroundColor: 'transparent', + borderColor: 'rgba(220,53,69,0.75)', + borderWidth: 3, + pointStyle: 'circle', + pointRadius: 5, + pointBorderColor: 'transparent', + pointBackgroundColor: 'rgba(220,53,69,0.75)', + }, { + label: "Electronics", + data: [ 0, 50, 40, 80, 35, 99, 80 ], + backgroundColor: 'transparent', + borderColor: 'rgba(40,167,69,0.75)', + borderWidth: 3, + pointStyle: 'circle', + pointRadius: 5, + pointBorderColor: 'transparent', + pointBackgroundColor: 'rgba(40,167,69,0.75)', + } ] + }, + options: { + responsive: true, + + tooltips: { + mode: 'index', + titleFontSize: 12, + titleFontColor: '#000', + bodyFontColor: '#000', + backgroundColor: '#fff', + titleFontFamily: 'Montserrat', + bodyFontFamily: 'Montserrat', + cornerRadius: 3, + intersect: false, + }, + legend: { + display: false, + labels: { + usePointStyle: true, + fontFamily: 'Montserrat', + }, + }, + scales: { + xAxes: [ { + display: true, + gridLines: { + display: false, + drawBorder: false + }, + scaleLabel: { + display: false, + labelString: 'Month' + } + } ], + yAxes: [ { + display: true, + gridLines: { + display: false, + drawBorder: false + }, + scaleLabel: { + display: true, + labelString: 'Value' + } + } ] + }, + title: { + display: false, + text: 'Normal Legend' + } + } + } ); + + + + + + + + //line chart + var ctx = document.getElementById( "lineChart" ); + ctx.height = 150; + var myChart = new Chart( ctx, { + type: 'line', + data: { + labels: [ "January", "February", "March", "April", "May", "June", "July" ], + datasets: [ + { + label: "My First dataset", + borderColor: "rgba(0,0,0,.09)", + borderWidth: "1", + backgroundColor: "rgba(0,0,0,.07)", + data: [ 20, 47, 35, 43, 65, 45, 35 ] + }, + { + label: "My Second dataset", + borderColor: "rgba(0, 194, 146, 0.9)", + borderWidth: "1", + backgroundColor: "rgba(0, 194, 146, 0.5)", + pointHighlightStroke: "rgba(26,179,148,1)", + data: [ 16, 32, 18, 27, 42, 33, 44 ] + } + ] + }, + options: { + responsive: true, + tooltips: { + mode: 'index', + intersect: false + }, + hover: { + mode: 'nearest', + intersect: true + } + + } + } ); + + + //bar chart + var ctx = document.getElementById( "barChart" ); + // ctx.height = 200; + var myChart = new Chart( ctx, { + type: 'bar', + data: { + labels: [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul" ], + datasets: [ + { + label: "My First dataset", + data: [ 65, 59, 80, 81, 56, 55, 45 ], + borderColor: "rgba(0, 194, 146, 0.9)", + borderWidth: "0", + backgroundColor: "rgba(0, 194, 146, 0.5)" + }, + { + label: "My Second dataset", + data: [ 28, 48, 40, 19, 86, 27, 76 ], + borderColor: "rgba(0,0,0,0.09)", + borderWidth: "0", + backgroundColor: "rgba(0,0,0,0.07)" + } + ] + }, + options: { + scales: { + yAxes: [ { + ticks: { + beginAtZero: true + } + } ] + } + } + } ); + + //radar chart + var ctx = document.getElementById( "radarChart" ); + ctx.height = 160; + var myChart = new Chart( ctx, { + type: 'radar', + data: { + labels: [ [ "Eating", "Dinner" ], [ "Drinking", "Water" ], "Sleeping", [ "Designing", "Graphics" ], "Coding", "Cycling", "Running" ], + datasets: [ + { + label: "My First dataset", + data: [ 65, 70, 66, 45, 5, 55, 40 ], + borderColor: "rgba(0, 194, 146, 0.6)", + borderWidth: "1", + backgroundColor: "rgba(0, 194, 146, 0.4)" + }, + { + label: "My Second dataset", + data: [ 28, 5, 55, 19, 63, 27, 68 ], + borderColor: "rgba(0, 194, 146, 0.7", + borderWidth: "1", + backgroundColor: "rgba(0, 194, 146, 0.5)" + } + ] + }, + options: { + legend: { + position: 'top' + }, + scale: { + ticks: { + beginAtZero: true + } + } + } + }); + + + //pie chart + var ctx = document.getElementById( "pieChart" ); + ctx.height = 300; + var myChart = new Chart( ctx, { + type: 'pie', + data: { + datasets: [ { + data: [ 45, 25, 20, 10 ], + backgroundColor: [ + "rgba(0, 194, 146,0.9)", + "rgba(0, 194, 146,0.7)", + "rgba(0, 194, 146,0.5)", + "rgba(0,0,0,0.07)" + ], + hoverBackgroundColor: [ + "rgba(0, 194, 146,0.9)", + "rgba(0, 194, 146,0.7)", + "rgba(0, 194, 146,0.5)", + "rgba(0,0,0,0.07)" + ] + + } ], + labels: [ + "green", + "green", + "green" + ] + }, + options: { + responsive: true + } + } ); + + //doughut chart + var ctx = document.getElementById( "doughutChart" ); + ctx.height = 150; + var myChart = new Chart( ctx, { + type: 'doughnut', + data: { + datasets: [ { + data: [ 35, 40, 20, 5 ], + backgroundColor: [ + "rgba(0, 194, 146,0.9)", + "rgba(0, 194, 146,0.7)", + "rgba(0, 194, 146,0.5)", + "rgba(0,0,0,0.07)" + ], + hoverBackgroundColor: [ + "rgba(0, 194, 146,0.9)", + "rgba(0, 194, 146,0.7)", + "rgba(0, 194, 146,0.5)", + "rgba(0,0,0,0.07)" + ] + + } ], + labels: [ + "green", + "green", + "green", + "green" + ] + }, + options: { + responsive: true + } + } ); + + //polar chart + var ctx = document.getElementById( "polarChart" ); + ctx.height = 150; + var myChart = new Chart( ctx, { + type: 'polarArea', + data: { + datasets: [ { + data: [ 15, 18, 10, 7, 19], + backgroundColor: [ + "rgba(0, 194, 146,0.9)", + "rgba(0, 194, 146,0.8)", + "rgba(0, 194, 146,0.7)", + "rgba(0,0,0,0.2)", + "rgba(0, 194, 146,0.5)" + ] + + } ], + labels: [ + "green", + "green", + "green", + "green" + ] + }, + options: { + responsive: true + } + } ); + + // single bar chart + var ctx = document.getElementById( "singelBarChart" ); + ctx.height = 150; + var myChart = new Chart( ctx, { + type: 'bar', + data: { + labels: [ "Sun", "Mon", "Tu", "Wed", "Th", "Fri", "Sat" ], + datasets: [ + { + label: "My First dataset", + data: [ 55, 50, 75, 80, 56, 55, 60 ], + borderColor: "rgba(0, 194, 146, 0.9)", + borderWidth: "0", + backgroundColor: "rgba(0, 194, 146, 0.5)" + } + ] + }, + options: { + scales: { + yAxes: [ { + ticks: { + beginAtZero: true + } + } ] + } + } + } ); + + + + +} )( jQuery ); \ No newline at end of file diff --git a/public/asset/js/init/datatables-init.js b/public/asset/js/init/datatables-init.js new file mode 100644 index 0000000..916b724 --- /dev/null +++ b/public/asset/js/init/datatables-init.js @@ -0,0 +1,53 @@ +(function ($) { + // "use strict"; + + + /* Data Table + -------------*/ + + + + + $('#bootstrap-data-table').DataTable({ + lengthMenu: [[10, 20, 50, -1], [10, 20, 50, "All"]], + }); + + + + $('#bootstrap-data-table-export').DataTable({ + dom: 'lBfrtip', + lengthMenu: [[10, 25, 50, -1], [10, 25, 50, "All"]], + buttons: [ + 'copy', 'csv', 'excel', 'pdf', 'print' + ] + }); + + $('#row-select').DataTable( { + initComplete: function () { + this.api().columns().every( function () { + var column = this; + var select = $('') + .appendTo( $(column.footer()).empty() ) + .on( 'change', function () { + var val = $.fn.dataTable.util.escapeRegex( + $(this).val() + ); + + column + .search( val ? '^'+val+'$' : '', true, false ) + .draw(); + } ); + + column.data().unique().sort().each( function ( d, j ) { + select.append( '' ) + } ); + } ); + } + } ); + + + + + + +})(jQuery); \ No newline at end of file diff --git a/public/asset/js/init/flot-chart-init.js b/public/asset/js/init/flot-chart-init.js new file mode 100644 index 0000000..4e2475c --- /dev/null +++ b/public/asset/js/init/flot-chart-init.js @@ -0,0 +1,379 @@ + (function($){ + + "use strict"; // Start of use strict + + var SufeeAdmin = { + + cpuLoad: function(){ + + var data = [], + totalPoints = 300; + + function getRandomData() { + + if ( data.length > 0 ) + data = data.slice( 1 ); + + // Do a random walk + + while ( data.length < totalPoints ) { + + var prev = data.length > 0 ? data[ data.length - 1 ] : 50, + y = prev + Math.random() * 10 - 5; + + if ( y < 0 ) { + y = 0; + } else if ( y > 100 ) { + y = 100; + } + + data.push( y ); + } + + // Zip the generated y values with the x values + + var res = []; + for ( var i = 0; i < data.length; ++i ) { + res.push( [ i, data[ i ] ] ) + } + + return res; + } + + // Set up the control widget + + var updateInterval = 30; + $( "#updateInterval" ).val( updateInterval ).change( function () { + var v = $( this ).val(); + if ( v && !isNaN( +v ) ) { + updateInterval = +v; + if ( updateInterval < 1 ) { + updateInterval = 1; + } else if ( updateInterval > 3000 ) { + updateInterval = 3000; + } + $( this ).val( "" + updateInterval ); + } + } ); + + var plot = $.plot( "#cpu-load", [ getRandomData() ], { + series: { + shadowSize: 0 // Drawing is faster without shadows + }, + yaxis: { + min: 0, + max: 100 + }, + xaxis: { + show: false + }, + colors: [ "#00c292" ], + grid: { + color: "transparent", + hoverable: true, + borderWidth: 0, + backgroundColor: 'transparent' + }, + tooltip: true, + tooltipOpts: { + content: "Y: %y", + defaultTheme: false + } + + + } ); + + function update() { + + plot.setData( [ getRandomData() ] ); + + // Since the axes don't change, we don't need to call plot.setupGrid() + + plot.draw(); + setTimeout( update, updateInterval ); + } + + update(); + + }, + + lineFlot: function(){ + + var sin = [], + cos = []; + + for ( var i = 0; i < 10; i += 0.1 ) { + sin.push( [ i, Math.sin( i ) ] ); + cos.push( [ i, Math.cos( i ) ] ); + } + + var plot = $.plot( "#flot-line", [ + { + data: sin, + label: "sin(x)" + }, + { + data: cos, + label: "cos(x)" + } + ], { + series: { + lines: { + show: true + }, + points: { + show: true + } + }, + yaxis: { + min: -1.2, + max: 1.2 + }, + colors: [ "#00c292", "#F44336" ], + grid: { + color: "#fff", + hoverable: true, + borderWidth: 0, + backgroundColor: 'transparent' + }, + tooltip: true, + tooltipOpts: { + content: "'%s' of %x.1 is %y.4", + shifts: { + x: -65, + y: 25 + } + } + } ); + }, + + pieFlot: function(){ + + var data = [ + { + label: " Data 1", + data: 2, + color: "#8fc9fb" + }, + { + label: " Data 2", + data: 4, + color: "#007BFF" + }, + { + label: " Data 3", + data: 7, + color: "#00c292" + }, + { + label: " Data 4", + data: 15, + color: "#F44336" + }, + { + label: " Data 5", + data: 10, + color: "#32c39f" + } + ]; + + var plotObj = $.plot( $( "#flot-pie" ), data, { + series: { + pie: { + show: true, + radius: 1, + label: { + show: false, + + } + } + }, + grid: { + hoverable: true + }, + tooltip: { + show: true, + content: "%p.0%, %s, n=%n", // show percentages, rounding to 2 decimal places + shifts: { + x: 20, + y: 0 + }, + defaultTheme: false + } + } ); + }, + + line2Flot: function(){ + + // first chart + var chart1Options = { + series: { + lines: { + show: true + }, + points: { + show: true + } + }, + xaxis: { + mode: "time", + timeformat: "%m/%d", + minTickSize: [ 1, "day" ] + }, + grid: { + hoverable: true + }, + legend: { + show: false + }, + grid: { + color: "#fff", + hoverable: true, + borderWidth: 0, + backgroundColor: 'transparent' + }, + tooltip: { + show: true, + content: "y: %y" + } + }; + var chart1Data = { + label: "chart1", + color: "#007BFF", + data: [ + [ 1354521600000, 6322 ], + [ 1354840000000, 6340 ], + [ 1355223600000, 6368 ], + [ 1355306400000, 6374 ], + [ 1355487300000, 6388 ], + [ 1355571900000, 6400 ] + ] + }; + $.plot( $( "#chart1" ), [ chart1Data ], chart1Options ); + }, + + barFlot: function(){ + + // second chart + var flotBarOptions = { + series: { + bars: { + show: true, + barWidth: 43200000 + } + }, + xaxis: { + mode: "time", + timeformat: "%m/%d", + minTickSize: [ 1, "day" ] + }, + grid: { + hoverable: true + }, + legend: { + show: false + }, + grid: { + color: "#fff", + hoverable: true, + borderWidth: 0, + backgroundColor: 'transparent' + }, + tooltip: { + show: true, + content: "x: %x, y: %y" + } + }; + var flotBarData = { + label: "flotBar", + color: "#007BFF", + data: [ + [ 1354921600000, 1000 ], + [ 1355040000000, 1500 ], + [ 1355223600000, 2000 ], + [ 1355306400000, 2500 ], + [ 1355487300000, 3000 ], + [ 1355571900000, 4000 ] + ] + }; + $.plot( $( "#flotBar" ), [ flotBarData ], flotBarOptions ); + + }, + + plotting: function(){ + + var d1 = [ [ 20, 20 ], [ 30, 34 ], [ 42, 60 ], [ 54, 20 ], [ 80, 90 ] ]; + + //flot options + var options = { + legend: { + show: false + }, + series: { + label: "Curved Lines Test", + curvedLines: { + active: true, + nrSplinePoints: 20 + } + }, + + grid: { + color: "#fff", + hoverable: true, + borderWidth: 0, + backgroundColor: 'transparent' + }, + tooltip: { + show: true, + content: "%s | x: %x; y: %y" + }, + yaxes: [ { + min: 10, + max: 90 + }, { + position: 'right' + } ] + }; + + //plotting + $.plot( $( "#flotCurve" ), [ + { + data: d1, + lines: { + show: true, + fill: true, + fillColor: "rgba(0,123,255,.15)", + lineWidth: 3 + }, + //curve the line (old pre 1.0.0 plotting function) + curvedLines: { + apply: true, + show: true, + fill: true, + fillColor: "rgba(0,123,255,.15)", + + } + }, { + data: d1, + points: { + show: true, + fill: true, + fillColor: "rgba(0,123,255,.15)", + } + } + ], options ); + } + +}; + +$(document).ready(function() { + SufeeAdmin.cpuLoad(); + SufeeAdmin.lineFlot(); + SufeeAdmin.pieFlot(); + SufeeAdmin.line2Flot(); + SufeeAdmin.barFlot(); + SufeeAdmin.plotting(); + +}); + +})(jQuery); diff --git a/public/asset/js/init/fullcalendar-init.js b/public/asset/js/init/fullcalendar-init.js new file mode 100644 index 0000000..a96a1dd --- /dev/null +++ b/public/asset/js/init/fullcalendar-init.js @@ -0,0 +1,193 @@ + +!function($) { + "use strict"; + + var CalendarApp = function() { + this.$body = $("body") + this.$modal = $('#event-modal'), + this.$event = ('#external-events div.external-event'), + this.$calendar = $('#calendar'), + this.$saveCategoryBtn = $('.save-category'), + this.$categoryForm = $('#add-category form'), + this.$extEvents = $('#external-events'), + this.$calendarObj = null + }; + + + /* on drop */ + CalendarApp.prototype.onDrop = function (eventObj, date) { + var $this = this; + // retrieve the dropped element's stored Event Object + var originalEventObject = eventObj.data('eventObject'); + var $categoryClass = eventObj.attr('data-class'); + // we need to copy it, so that multiple events don't have a reference to the same object + var copiedEventObject = $.extend({}, originalEventObject); + // assign it the date that was reported + copiedEventObject.start = date; + if ($categoryClass) + copiedEventObject['className'] = [$categoryClass]; + // render the event on the calendar + $this.$calendar.fullCalendar('renderEvent', copiedEventObject, true); + // is the "remove after drop" checkbox checked? + if ($('#drop-remove').is(':checked')) { + // if so, remove the element from the "Draggable Events" list + eventObj.remove(); + } + }, + /* on click on event */ + CalendarApp.prototype.onEventClick = function (calEvent, jsEvent, view) { + var $this = this; + var form = $("
"); + form.append(""); + form.append("
"); + $this.$modal.modal({ + backdrop: 'static' + }); + $this.$modal.find('.delete-event').show().end().find('.save-event').hide().end().find('.modal-body').empty().prepend(form).end().find('.delete-event').unbind('click').click(function () { + $this.$calendarObj.fullCalendar('removeEvents', function (ev) { + return (ev._id == calEvent._id); + }); + $this.$modal.modal('hide'); + }); + $this.$modal.find('form').on('submit', function () { + calEvent.title = form.find("input[type=text]").val(); + $this.$calendarObj.fullCalendar('updateEvent', calEvent); + $this.$modal.modal('hide'); + return false; + }); + }, + /* on select */ + CalendarApp.prototype.onSelect = function (start, end, allDay) { + var $this = this; + $this.$modal.modal({ + backdrop: 'static' + }); + var form = $("
"); + form.append("
"); + form.find(".row") + .append("
") + .append("
") + .find("select[name='category']") + .append("") + .append("") + .append("") + .append("") + .append("") + .append("") + .append(""); + $this.$modal.find('.delete-event').hide().end().find('.save-event').show().end().find('.modal-body').empty().prepend(form).end().find('.save-event').unbind('click').click(function () { + form.submit(); + }); + $this.$modal.find('form').on('submit', function () { + var title = form.find("input[name='title']").val(); + var beginning = form.find("input[name='beginning']").val(); + var ending = form.find("input[name='ending']").val(); + var categoryClass = form.find("select[name='category'] option:checked").val(); + if (title !== null && title.length != 0) { + $this.$calendarObj.fullCalendar('renderEvent', { + title: title, + start:start, + end: end, + allDay: false, + className: categoryClass + }, true); + $this.$modal.modal('hide'); + } + else{ + alert('You have to give a title to your event'); + } + return false; + + }); + $this.$calendarObj.fullCalendar('unselect'); + }, + CalendarApp.prototype.enableDrag = function() { + //init events + $(this.$event).each(function () { + // create an Event Object (http://arshaw.com/fullcalendar/docs/event_data/Event_Object/) + // it doesn't need to have a start or end + var eventObject = { + title: $.trim($(this).text()) // use the element's text as the event title + }; + // store the Event Object in the DOM element so we can get to it later + $(this).data('eventObject', eventObject); + // make the event draggable using jQuery UI + $(this).draggable({ + zIndex: 999, + revert: true, // will cause the event to go back to its + revertDuration: 0 // original position after the drag + }); + }); + } + /* Initializing */ + CalendarApp.prototype.init = function() { + this.enableDrag(); + /* Initialize the calendar */ + var date = new Date(); + var d = date.getDate(); + var m = date.getMonth(); + var y = date.getFullYear(); + var form = ''; + var today = new Date($.now()); + + var defaultEvents = [{ + title: 'Hey!', + start: new Date($.now() + 158000000), + className: 'bg-dark' + }, { + title: 'See John Deo', + start: today, + end: today, + className: 'bg-danger' + }, { + title: 'Buy a Theme', + start: new Date($.now() + 338000000), + className: 'bg-primary' + }]; + + var $this = this; + $this.$calendarObj = $this.$calendar.fullCalendar({ + slotDuration: '00:15:00', /* If we want to split day time each 15minutes */ + minTime: '08:00:00', + maxTime: '19:00:00', + defaultView: 'month', + handleWindowResize: true, + height: $(window).height() - 200, + header: { + left: 'prev,next today', + center: 'title', + right: 'month,agendaWeek,agendaDay' + }, + events: defaultEvents, + editable: true, + droppable: true, // this allows things to be dropped onto the calendar !!! + eventLimit: true, // allow "more" link when too many events + selectable: true, + drop: function(date) { $this.onDrop($(this), date); }, + select: function (start, end, allDay) { $this.onSelect(start, end, allDay); }, + eventClick: function(calEvent, jsEvent, view) { $this.onEventClick(calEvent, jsEvent, view); } + + }); + + //on new event + this.$saveCategoryBtn.on('click', function(){ + var categoryName = $this.$categoryForm.find("input[name='category-name']").val(); + var categoryColor = $this.$categoryForm.find("select[name='category-color']").val(); + if (categoryName !== null && categoryName.length != 0) { + $this.$extEvents.append('
' + categoryName + '
') + $this.enableDrag(); + } + + }); + }, + + //init CalendarApp + $.CalendarApp = new CalendarApp, $.CalendarApp.Constructor = CalendarApp + +}(window.jQuery), + +//initializing CalendarApp +function($) { + "use strict"; + $.CalendarApp.init() +}(window.jQuery); diff --git a/public/asset/js/init/gmap-init.js b/public/asset/js/init/gmap-init.js new file mode 100644 index 0000000..65b15a6 --- /dev/null +++ b/public/asset/js/init/gmap-init.js @@ -0,0 +1,246 @@ +(function($){ + +var map; +$(document).ready(function(){ + map = new GMaps({ + el: '#basic-map', + lat: -12.043333, + lng: -77.028333, + zoomControl : true, + zoomControlOpt: { + style : 'SMALL', + position: 'TOP_LEFT' + }, + panControl : false, + streetViewControl : false, + mapTypeControl: false, + overviewMapControl: false + }); +}); + + + + +var map, infoWindow; +$(document).ready(function(){ + infoWindow = new google.maps.InfoWindow({}); + map = new GMaps({ + el: '#map-2', + zoom: 11, + lat: 41.850033, + lng: -87.6500523 + }); + map.loadFromFusionTables({ + query: { + select: '\'Geocodable address\'', + from: '1mZ53Z70NsChnBMm-qEYmSDOvLXgrreLTkQUvvg' + }, + suppressInfoWindows: true, + events: { + click: function(point){ + infoWindow.setContent('You clicked here!'); + infoWindow.setPosition(point.latLng); + infoWindow.open(map.map); + } + } + }); +}); + + + + +var map, rectangle, polygon, circle; +$(document).ready(function(){ + map = new GMaps({ + el: '#map-3', + lat: -12.043333, + lng: -77.028333 + }); + var bounds = [[-12.030397656836609,-77.02373871559225],[-12.034804866577001,-77.01154422636042]]; + rectangle = map.drawRectangle({ + bounds: bounds, + strokeColor: '#BBD8E9', + strokeOpacity: 1, + strokeWeight: 3, + fillColor: '#BBD8E9', + fillOpacity: 0.6 + }); + + var paths = [[-12.040397656836609,-77.03373871559225],[-12.040248585302038,-77.03993927003302],[-12.050047116528843,-77.02448169303511],[-12.044804866577001,-77.02154422636042]]; + polygon = map.drawPolygon({ + paths: paths, + strokeColor: '#25D359', + strokeOpacity: 1, + strokeWeight: 3, + fillColor: '#25D359', + fillOpacity: 0.6 + }); + var lat = -12.040504866577001; + var lng = -77.02024422636042; + circle = map.drawCircle({ + lat: lat, + lng: lng, + radius: 350, + strokeColor: '#432070', + strokeOpacity: 1, + strokeWeight: 3, + fillColor: '#432070', + fillOpacity: 0.6 + }); + for(var i in paths){ + bounds.push(paths[i]); + } + var b = []; + for(var i in bounds){ + latlng = new google.maps.LatLng(bounds[i][0], bounds[i][1]); + b.push(latlng); + } + for(var i in paths){ + latlng = new google.maps.LatLng(paths[i][0], paths[i][1]); + b.push(latlng); + } + map.fitLatLngBounds(b); +}); + + + + + + +var map; +$(document).ready(function(){ + map = new GMaps({ + el: '#map-4', + lat: -12.043333, + lng: -77.028333 + }); + //locations request + map.getElevations({ + locations : [[-12.040397656836609,-77.03373871559225], [-12.050047116528843,-77.02448169303511], [-12.044804866577001,-77.02154422636042]], + callback : function (result, status){ + if (status == google.maps.ElevationStatus.OK) { + for (var i in result){ + map.addMarker({ + lat: result[i].location.lat(), + lng: result[i].location.lng(), + title: 'Marker with InfoWindow', + infoWindow: { + content: '

The elevation is '+result[i].elevation+' in meters

' + } + }); + } + } + } + }); +}); + + + + + + + + + + + + + + + + +var map; +$(document).ready(function(){ + var map = new GMaps({ + el: '#map-5', + lat: -12.043333, + lng: -77.028333 + }); + + GMaps.geolocate({ + success: function(position){ + map.setCenter(position.coords.latitude, position.coords.longitude); + }, + error: function(error){ + alert('Geolocation failed: '+error.message); + }, + not_supported: function(){ + alert("Your browser does not support geolocation"); + }, + always: function(){ + alert("Done!"); + } + }); +}); + + + + + + + + + + + +var map, infoWindow; +$(document).ready(function(){ + infoWindow = new google.maps.InfoWindow({}); + map = new GMaps({ + el: '#map-6', + zoom: 12, + lat: 40.65, + lng: -73.95 + }); + map.loadFromKML({ + url: 'https://api.flickr.com/services/feeds/geo/?g=322338@N20&lang=en-us&format=feed-georss', + suppressInfoWindows: true, + events: { + click: function(point){ + infoWindow.setContent(point.featureData.infoWindowHtml); + infoWindow.setPosition(point.latLng); + infoWindow.open(map.map); + } + } + }); +}); + + + + + +var map; +$(function () { + map = new GMaps({ + el: "#map-7", + lat: -12.043333, + lng: -77.028333, + zoom: 3 + }); + + map.addLayer('weather', { + clickable: false + }); + map.addLayer('clouds'); +}); + + + + + + +map = new GMaps({ + el: '#map-8', + zoom: 16, + lat: -12.043333, + lng: -77.028333, + click: function(e){ + alert('click'); + }, + dragend: function(e){ + alert('dragend'); + } +}); + + +})(jQuery); diff --git a/public/asset/js/init/peitychart-init.js b/public/asset/js/init/peitychart-init.js new file mode 100644 index 0000000..adbc4c3 --- /dev/null +++ b/public/asset/js/init/peitychart-init.js @@ -0,0 +1,100 @@ +(function($){ + + "use strict"; // Start of use strict + +$(function() { + "use strict"; + // Just the defaults. + $("span.pie").peity("pie",{ + width: '50', + height: '50' + }) + + $('span.donut').peity('donut',{ + width: '50', + height: '50' + }) + + + $(".peity-line").peity("line",{ + width: '300', + height: '100' + }) + + $(".bar").peity("bar",{ + width: '300', + height: '100' + }) + + $(".bar-colours-1").peity("bar", { + fill: ["red", "green", "blue"], + width: '100', + height: '100' + }) + + $(".bar-colours-2").peity("bar", { + fill: function(value) { + return value > 0 ? "green" : "red" + }, + width: '100', + height: '100' + }) + + $(".bar-colours-3").peity("bar", { + fill: function(_, i, all) { + var g = parseInt((i / all.length) * 255) + return "rgb(255, " + g + ", 0)" + }, + width: '100', + height: '100' + }) + + $(".pie-colours-1").peity("pie", { + fill: ["cyan", "magenta", "yellow", "black"], + width: '100', + height: '100' + }) + + $(".pie-colours-2").peity("pie", { + fill: function(_, i, all) { + var g = parseInt((i / all.length) * 255) + return "rgb(255, " + g + ", 0)" + }, + width: '100', + height: '100' + }) + + // Using data attributes + $(".data-attributes span").peity("donut") + + // Evented example. + $("select").change(function() { + var text = $(this).val() + "/" + 5 + + $(this) + .siblings("span.graph") + .text(text) + .change() + + $("#notice").text("Chart updated: " + text) + }).change() + + $("span.graph").peity("pie") + + // Updating charts. + var updatingChart = $(".updating-chart").peity("line", { width: "100%",height:100 }) + + setInterval(function() { + var random = Math.round(Math.random() * 10) + var values = updatingChart.text().split(",") + values.shift() + values.push(random) + + updatingChart + .text(values.join(",")) + .change() + }, 1000) +}) + + +})(jQuery); diff --git a/public/asset/js/init/vector-init.js b/public/asset/js/init/vector-init.js new file mode 100644 index 0000000..439ae95 --- /dev/null +++ b/public/asset/js/init/vector-init.js @@ -0,0 +1,223 @@ +( function ( $ ) { + "use strict"; + + + + + + jQuery( '#vmap' ).vectorMap( { + map: 'world_en', + backgroundColor: null, + color: '#ffffff', + hoverOpacity: 0.7, + selectedColor: '#1de9b6', + enableZoom: true, + showTooltip: true, + values: sample_data, + scaleColors: [ '#1de9b6', '#03a9f5' ], + normalizeFunction: 'polynomial' + } ); + + jQuery( '#vmap2' ).vectorMap( { + map: 'dz_fr', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + borderOpacity: 1, + enableZoom: true, + showTooltip: true + } ); + + jQuery( '#vmap3' ).vectorMap( { + map: 'argentina_en', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + onRegionClick: function ( element, code, region ) { + var message = 'You clicked "' + region + '" which has the code: ' + code.toUpperCase(); + + alert( message ); + } + } ); + + jQuery( '#vmap4' ).vectorMap( { + map: 'brazil_br', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + onRegionClick: function ( element, code, region ) { + var message = 'You clicked "' + region + '" which has the code: ' + code.toUpperCase(); + + alert( message ); + } + } ); + + jQuery( '#vmap5' ).vectorMap( { + map: 'france_fr', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + enableZoom: true, + showTooltip: true + } ); + + jQuery( '#vmap6' ).vectorMap( { + map: 'germany_en', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + onRegionClick: function ( element, code, region ) { + var message = 'You clicked "' + region + '" which has the code: ' + code.toUpperCase(); + + alert( message ); + } + } ); + + jQuery( '#vmap7' ).vectorMap( { + map: 'greece', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + onRegionClick: function ( element, code, region ) { + var message = 'You clicked "' + region + '" which has the code: ' + code.toUpperCase(); + + alert( message ); + } + } ); + + jQuery( '#vmap8' ).vectorMap( { + map: 'iran_ir', + onRegionClick: function ( element, code, region ) { + var message = 'You clicked "' + region + '" which has the code: ' + code.toUpperCase(); + + alert( message ); + } + } ); + + jQuery( '#vmap9' ).vectorMap( { + map: 'iraq', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + onRegionClick: function ( element, code, region ) { + var message = 'You clicked "' + region + '" which has the code: ' + code.toUpperCase(); + + alert( message ); + } + } ); + + jQuery( '#vmap10' ).vectorMap( { + map: 'russia_en', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + hoverOpacity: 0.7, + selectedColor: '#999999', + enableZoom: true, + showTooltip: true, + scaleColors: [ '#C8EEFF', '#006491' ], + normalizeFunction: 'polynomial' + } ); + + jQuery( '#vmap11' ).vectorMap( { + map: 'tunisia', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + onRegionClick: function ( element, code, region ) { + var message = 'You clicked "' + region + '" which has the code: ' + code.toUpperCase(); + + alert( message ); + } + } ); + + jQuery( '#vmap12' ).vectorMap( { + map: 'europe_en', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + enableZoom: true, + showTooltip: true + } ); + + jQuery( '#vmap13' ).vectorMap( { + map: 'usa_en', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + enableZoom: true, + showTooltip: true, + selectedColor: null, + hoverColor: null, + colors: { + mo: '#001BFF', + fl: '#001BFF', + or: '#001BFF' + }, + onRegionClick: function ( event, code, region ) { + event.preventDefault(); + } + } ); + + jQuery( '#vmap14' ).vectorMap( { + map: 'turkey', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + onRegionClick: function ( element, code, region ) { + var message = 'You clicked "' + region + '" which has the code: ' + code.toUpperCase(); + alert( message ); + } + } ); + + + +} )( jQuery ); + + + +var map; + +jQuery( document ).ready( function () { + + // Store currentRegion + var currentRegion = 'fl'; + + // List of Regions we'll let clicks through for + var enabledRegions = [ 'mo', 'fl', 'or' ]; + + map = jQuery( '#vmap15' ).vectorMap( { + map: 'usa_en', + color: '#007BFF', + borderColor: '#fff', + backgroundColor: '#fff', + enableZoom: true, + showTooltip: true, + selectedColor: '#001BFF', + selectedRegions: [ 'fl' ], + hoverColor: null, + colors: { + mo: '#001BFF', + fl: '#001BFF', + or: '#001BFF' + }, + onRegionClick: function ( event, code, region ) { + // Check if this is an Enabled Region, and not the current selected on + if ( enabledRegions.indexOf( code ) === -1 || currentRegion === code ) { + // Not an Enabled Region + event.preventDefault(); + } else { + // Enabled Region. Update Newly Selected Region. + currentRegion = code; + } + }, + onRegionSelect: function ( event, code, region ) { + console.log( map.selectedRegions ); + }, + onLabelShow: function ( event, label, code ) { + if ( enabledRegions.indexOf( code ) === -1 ) { + event.preventDefault(); + } + } + } ); +} ); \ No newline at end of file diff --git a/public/asset/js/init/weather-init.js b/public/asset/js/init/weather-init.js new file mode 100644 index 0000000..99b84db --- /dev/null +++ b/public/asset/js/init/weather-init.js @@ -0,0 +1,140 @@ +(function ($) { + //"use strict"; + + function loadWeather(location, woeid) { + $.simpleWeather({ + location: location, + woeid: woeid, + unit: 'f', + success: function (weather) { + html = '
'; + html += ''; + html += '
' + weather.currently + '
'; + html += '
' + weather.forecast[0].day + ', ' + weather.forecast[0].date+ '
'; + html += '
'; + + + html += '
'; + html += '
' + weather.city + ' '+ weather.region + '
'; + html += '
' + weather.alt.temp + '°C
'; + html += '
'; + + html += '
'; + + html += '
' + weather.forecast[1].day + ' ' + weather.forecast[1].alt.high + '° ' + weather.forecast[1].alt.low + '°
'; + html += '
' + weather.forecast[2].day + ' ' + weather.forecast[2].alt.high + '° ' + weather.forecast[2].alt.low + '°
'; + html += '
' + weather.forecast[3].day + ' ' + weather.forecast[3].alt.high + '° ' + weather.forecast[3].alt.low + '°
'; + html += '
' + weather.forecast[4].day + ' ' + weather.forecast[4].alt.high + '° ' + weather.forecast[4].alt.low + '°
'; + html += '
' + weather.forecast[5].day + ' ' + weather.forecast[5].alt.high + '° ' + weather.forecast[5].alt.low + '°
'; + html += '
'; + + $("#weather-one").html(html); + }, + error: function (error) { + $("#weather-one").html('

' + error + '

'); + } + }); + } + + + // init + loadWeather('New York City', ''); + +})(jQuery); + + +(function ($) { + //"use strict"; + + function loadWeather(location, woeid) { + $.simpleWeather({ + location: location, + woeid: woeid, + unit: 'f', + success: function (weather) { + + html = '

' + weather.temp + '°' + weather.units.temp + '

'; + html += '
' + weather.city + ', ' + weather.region + '
'; + html += '
' + weather.currently + '
'; + html += '
' + weather.alt.temp + '°C
'; + + $("#weather-two").html(html); + }, + error: function (error) { + $("#weather-two").html('

' + error + '

'); + } + }); + } + + + // init + loadWeather('New York City', ''); + +})(jQuery); + + + +(function ($) { + //"use strict"; + + function loadWeather(location, woeid) { + $.simpleWeather({ + location: location, + woeid: woeid, + unit: 'f', + success: function (weather) { + + html = '

' + weather.temp + '°' + weather.units.temp + '

'; + html += '
' + weather.city + ', ' + weather.region + '
'; + html += '
' + weather.currently + '
'; + html += '
' + weather.alt.temp + '°C
'; + + $("#weather-three").html(html); + }, + error: function (error) { + $("#weather-three").html('

' + error + '

'); + } + }); + } + + + // init + loadWeather('Sydney', ''); + +})(jQuery); + + +(function ($) { + //"use strict"; + + function loadWeather(location, woeid) { + $.simpleWeather({ + location: location, + woeid: woeid, + unit: 'f', + success: function (weather) { + + html = '

' + weather.temp + '°' + weather.units.temp + '

'; + html += '
' + weather.city + ', ' + weather.region + '
'; + html += '
' + weather.currently + '
'; + html += '
' + weather.alt.temp + '°C
'; + + $("#weather-four").html(html); + }, + error: function (error) { + $("#weather-four").html('

' + error + '

'); + } + }); + } + + + // init + loadWeather('New York', ''); + +})(jQuery); + + + + + + diff --git a/public/asset/js/lib/chosen/chosen.jquery.js b/public/asset/js/lib/chosen/chosen.jquery.js new file mode 100644 index 0000000..b8e20eb --- /dev/null +++ b/public/asset/js/lib/chosen/chosen.jquery.js @@ -0,0 +1,1349 @@ +/*! +Chosen, a Select Box Enhancer for jQuery and Prototype +by Patrick Filler for Harvest, http://getharvest.com + +Version 1.8.2 +Full source at https://github.com/harvesthq/chosen +Copyright (c) 2011-2017 Harvest http://getharvest.com + +MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md +This file is generated by `grunt build`, do not edit it by hand. +*/ + +(function() { + var $, AbstractChosen, Chosen, SelectParser, + bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }, + extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, + hasProp = {}.hasOwnProperty; + + SelectParser = (function() { + function SelectParser() { + this.options_index = 0; + this.parsed = []; + } + + SelectParser.prototype.add_node = function(child) { + if (child.nodeName.toUpperCase() === "OPTGROUP") { + return this.add_group(child); + } else { + return this.add_option(child); + } + }; + + SelectParser.prototype.add_group = function(group) { + var group_position, i, len, option, ref, results1; + group_position = this.parsed.length; + this.parsed.push({ + array_index: group_position, + group: true, + label: group.label, + title: group.title ? group.title : void 0, + children: 0, + disabled: group.disabled, + classes: group.className + }); + ref = group.childNodes; + results1 = []; + for (i = 0, len = ref.length; i < len; i++) { + option = ref[i]; + results1.push(this.add_option(option, group_position, group.disabled)); + } + return results1; + }; + + SelectParser.prototype.add_option = function(option, group_position, group_disabled) { + if (option.nodeName.toUpperCase() === "OPTION") { + if (option.text !== "") { + if (group_position != null) { + this.parsed[group_position].children += 1; + } + this.parsed.push({ + array_index: this.parsed.length, + options_index: this.options_index, + value: option.value, + text: option.text, + html: option.innerHTML, + title: option.title ? option.title : void 0, + selected: option.selected, + disabled: group_disabled === true ? group_disabled : option.disabled, + group_array_index: group_position, + group_label: group_position != null ? this.parsed[group_position].label : null, + classes: option.className, + style: option.style.cssText + }); + } else { + this.parsed.push({ + array_index: this.parsed.length, + options_index: this.options_index, + empty: true + }); + } + return this.options_index += 1; + } + }; + + return SelectParser; + + })(); + + SelectParser.select_to_array = function(select) { + var child, i, len, parser, ref; + parser = new SelectParser(); + ref = select.childNodes; + for (i = 0, len = ref.length; i < len; i++) { + child = ref[i]; + parser.add_node(child); + } + return parser.parsed; + }; + + AbstractChosen = (function() { + function AbstractChosen(form_field, options1) { + this.form_field = form_field; + this.options = options1 != null ? options1 : {}; + this.label_click_handler = bind(this.label_click_handler, this); + if (!AbstractChosen.browser_is_supported()) { + return; + } + this.is_multiple = this.form_field.multiple; + this.set_default_text(); + this.set_default_values(); + this.setup(); + this.set_up_html(); + this.register_observers(); + this.on_ready(); + } + + AbstractChosen.prototype.set_default_values = function() { + this.click_test_action = (function(_this) { + return function(evt) { + return _this.test_active_click(evt); + }; + })(this); + this.activate_action = (function(_this) { + return function(evt) { + return _this.activate_field(evt); + }; + })(this); + this.active_field = false; + this.mouse_on_container = false; + this.results_showing = false; + this.result_highlighted = null; + this.is_rtl = this.options.rtl || /\bchosen-rtl\b/.test(this.form_field.className); + this.allow_single_deselect = (this.options.allow_single_deselect != null) && (this.form_field.options[0] != null) && this.form_field.options[0].text === "" ? this.options.allow_single_deselect : false; + this.disable_search_threshold = this.options.disable_search_threshold || 0; + this.disable_search = this.options.disable_search || false; + this.enable_split_word_search = this.options.enable_split_word_search != null ? this.options.enable_split_word_search : true; + this.group_search = this.options.group_search != null ? this.options.group_search : true; + this.search_contains = this.options.search_contains || false; + this.single_backstroke_delete = this.options.single_backstroke_delete != null ? this.options.single_backstroke_delete : true; + this.max_selected_options = this.options.max_selected_options || Infinity; + this.inherit_select_classes = this.options.inherit_select_classes || false; + this.display_selected_options = this.options.display_selected_options != null ? this.options.display_selected_options : true; + this.display_disabled_options = this.options.display_disabled_options != null ? this.options.display_disabled_options : true; + this.include_group_label_in_selected = this.options.include_group_label_in_selected || false; + this.max_shown_results = this.options.max_shown_results || Number.POSITIVE_INFINITY; + this.case_sensitive_search = this.options.case_sensitive_search || false; + return this.hide_results_on_select = this.options.hide_results_on_select != null ? this.options.hide_results_on_select : true; + }; + + AbstractChosen.prototype.set_default_text = function() { + if (this.form_field.getAttribute("data-placeholder")) { + this.default_text = this.form_field.getAttribute("data-placeholder"); + } else if (this.is_multiple) { + this.default_text = this.options.placeholder_text_multiple || this.options.placeholder_text || AbstractChosen.default_multiple_text; + } else { + this.default_text = this.options.placeholder_text_single || this.options.placeholder_text || AbstractChosen.default_single_text; + } + this.default_text = this.escape_html(this.default_text); + return this.results_none_found = this.form_field.getAttribute("data-no_results_text") || this.options.no_results_text || AbstractChosen.default_no_result_text; + }; + + AbstractChosen.prototype.choice_label = function(item) { + if (this.include_group_label_in_selected && (item.group_label != null)) { + return "" + item.group_label + "" + item.html; + } else { + return item.html; + } + }; + + AbstractChosen.prototype.mouse_enter = function() { + return this.mouse_on_container = true; + }; + + AbstractChosen.prototype.mouse_leave = function() { + return this.mouse_on_container = false; + }; + + AbstractChosen.prototype.input_focus = function(evt) { + if (this.is_multiple) { + if (!this.active_field) { + return setTimeout(((function(_this) { + return function() { + return _this.container_mousedown(); + }; + })(this)), 50); + } + } else { + if (!this.active_field) { + return this.activate_field(); + } + } + }; + + AbstractChosen.prototype.input_blur = function(evt) { + if (!this.mouse_on_container) { + this.active_field = false; + return setTimeout(((function(_this) { + return function() { + return _this.blur_test(); + }; + })(this)), 100); + } + }; + + AbstractChosen.prototype.label_click_handler = function(evt) { + if (this.is_multiple) { + return this.container_mousedown(evt); + } else { + return this.activate_field(); + } + }; + + AbstractChosen.prototype.results_option_build = function(options) { + var content, data, data_content, i, len, ref, shown_results; + content = ''; + shown_results = 0; + ref = this.results_data; + for (i = 0, len = ref.length; i < len; i++) { + data = ref[i]; + data_content = ''; + if (data.group) { + data_content = this.result_add_group(data); + } else { + data_content = this.result_add_option(data); + } + if (data_content !== '') { + shown_results++; + content += data_content; + } + if (options != null ? options.first : void 0) { + if (data.selected && this.is_multiple) { + this.choice_build(data); + } else if (data.selected && !this.is_multiple) { + this.single_set_selected_text(this.choice_label(data)); + } + } + if (shown_results >= this.max_shown_results) { + break; + } + } + return content; + }; + + AbstractChosen.prototype.result_add_option = function(option) { + var classes, option_el; + if (!option.search_match) { + return ''; + } + if (!this.include_option_in_results(option)) { + return ''; + } + classes = []; + if (!option.disabled && !(option.selected && this.is_multiple)) { + classes.push("active-result"); + } + if (option.disabled && !(option.selected && this.is_multiple)) { + classes.push("disabled-result"); + } + if (option.selected) { + classes.push("result-selected"); + } + if (option.group_array_index != null) { + classes.push("group-option"); + } + if (option.classes !== "") { + classes.push(option.classes); + } + option_el = document.createElement("li"); + option_el.className = classes.join(" "); + option_el.style.cssText = option.style; + option_el.setAttribute("data-option-array-index", option.array_index); + option_el.innerHTML = option.highlighted_html || option.html; + if (option.title) { + option_el.title = option.title; + } + return this.outerHTML(option_el); + }; + + AbstractChosen.prototype.result_add_group = function(group) { + var classes, group_el; + if (!(group.search_match || group.group_match)) { + return ''; + } + if (!(group.active_options > 0)) { + return ''; + } + classes = []; + classes.push("group-result"); + if (group.classes) { + classes.push(group.classes); + } + group_el = document.createElement("li"); + group_el.className = classes.join(" "); + group_el.innerHTML = group.highlighted_html || this.escape_html(group.label); + if (group.title) { + group_el.title = group.title; + } + return this.outerHTML(group_el); + }; + + AbstractChosen.prototype.results_update_field = function() { + this.set_default_text(); + if (!this.is_multiple) { + this.results_reset_cleanup(); + } + this.result_clear_highlight(); + this.results_build(); + if (this.results_showing) { + return this.winnow_results(); + } + }; + + AbstractChosen.prototype.reset_single_select_options = function() { + var i, len, ref, result, results1; + ref = this.results_data; + results1 = []; + for (i = 0, len = ref.length; i < len; i++) { + result = ref[i]; + if (result.selected) { + results1.push(result.selected = false); + } else { + results1.push(void 0); + } + } + return results1; + }; + + AbstractChosen.prototype.results_toggle = function() { + if (this.results_showing) { + return this.results_hide(); + } else { + return this.results_show(); + } + }; + + AbstractChosen.prototype.results_search = function(evt) { + if (this.results_showing) { + return this.winnow_results(); + } else { + return this.results_show(); + } + }; + + AbstractChosen.prototype.winnow_results = function() { + var escapedQuery, fix, i, len, option, prefix, query, ref, regex, results, results_group, search_match, startpos, suffix, text; + this.no_results_clear(); + results = 0; + query = this.get_search_text(); + escapedQuery = query.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&"); + regex = this.get_search_regex(escapedQuery); + ref = this.results_data; + for (i = 0, len = ref.length; i < len; i++) { + option = ref[i]; + option.search_match = false; + results_group = null; + search_match = null; + option.highlighted_html = ''; + if (this.include_option_in_results(option)) { + if (option.group) { + option.group_match = false; + option.active_options = 0; + } + if ((option.group_array_index != null) && this.results_data[option.group_array_index]) { + results_group = this.results_data[option.group_array_index]; + if (results_group.active_options === 0 && results_group.search_match) { + results += 1; + } + results_group.active_options += 1; + } + text = option.group ? option.label : option.text; + if (!(option.group && !this.group_search)) { + search_match = this.search_string_match(text, regex); + option.search_match = search_match != null; + if (option.search_match && !option.group) { + results += 1; + } + if (option.search_match) { + if (query.length) { + startpos = search_match.index; + prefix = text.slice(0, startpos); + fix = text.slice(startpos, startpos + query.length); + suffix = text.slice(startpos + query.length); + option.highlighted_html = (this.escape_html(prefix)) + "" + (this.escape_html(fix)) + "" + (this.escape_html(suffix)); + } + if (results_group != null) { + results_group.group_match = true; + } + } else if ((option.group_array_index != null) && this.results_data[option.group_array_index].search_match) { + option.search_match = true; + } + } + } + } + this.result_clear_highlight(); + if (results < 1 && query.length) { + this.update_results_content(""); + return this.no_results(query); + } else { + this.update_results_content(this.results_option_build()); + return this.winnow_results_set_highlight(); + } + }; + + AbstractChosen.prototype.get_search_regex = function(escaped_search_string) { + var regex_flag, regex_string; + regex_string = this.search_contains ? escaped_search_string : "(^|\\s|\\b)" + escaped_search_string + "[^\\s]*"; + if (!(this.enable_split_word_search || this.search_contains)) { + regex_string = "^" + regex_string; + } + regex_flag = this.case_sensitive_search ? "" : "i"; + return new RegExp(regex_string, regex_flag); + }; + + AbstractChosen.prototype.search_string_match = function(search_string, regex) { + var match; + match = regex.exec(search_string); + if (!this.search_contains && (match != null ? match[1] : void 0)) { + match.index += 1; + } + return match; + }; + + AbstractChosen.prototype.choices_count = function() { + var i, len, option, ref; + if (this.selected_option_count != null) { + return this.selected_option_count; + } + this.selected_option_count = 0; + ref = this.form_field.options; + for (i = 0, len = ref.length; i < len; i++) { + option = ref[i]; + if (option.selected) { + this.selected_option_count += 1; + } + } + return this.selected_option_count; + }; + + AbstractChosen.prototype.choices_click = function(evt) { + evt.preventDefault(); + this.activate_field(); + if (!(this.results_showing || this.is_disabled)) { + return this.results_show(); + } + }; + + AbstractChosen.prototype.keydown_checker = function(evt) { + var ref, stroke; + stroke = (ref = evt.which) != null ? ref : evt.keyCode; + this.search_field_scale(); + if (stroke !== 8 && this.pending_backstroke) { + this.clear_backstroke(); + } + switch (stroke) { + case 8: + this.backstroke_length = this.get_search_field_value().length; + break; + case 9: + if (this.results_showing && !this.is_multiple) { + this.result_select(evt); + } + this.mouse_on_container = false; + break; + case 13: + if (this.results_showing) { + evt.preventDefault(); + } + break; + case 27: + if (this.results_showing) { + evt.preventDefault(); + } + break; + case 32: + if (this.disable_search) { + evt.preventDefault(); + } + break; + case 38: + evt.preventDefault(); + this.keyup_arrow(); + break; + case 40: + evt.preventDefault(); + this.keydown_arrow(); + break; + } + }; + + AbstractChosen.prototype.keyup_checker = function(evt) { + var ref, stroke; + stroke = (ref = evt.which) != null ? ref : evt.keyCode; + this.search_field_scale(); + switch (stroke) { + case 8: + if (this.is_multiple && this.backstroke_length < 1 && this.choices_count() > 0) { + this.keydown_backstroke(); + } else if (!this.pending_backstroke) { + this.result_clear_highlight(); + this.results_search(); + } + break; + case 13: + evt.preventDefault(); + if (this.results_showing) { + this.result_select(evt); + } + break; + case 27: + if (this.results_showing) { + this.results_hide(); + } + break; + case 9: + case 16: + case 17: + case 18: + case 38: + case 40: + case 91: + break; + default: + this.results_search(); + break; + } + }; + + AbstractChosen.prototype.clipboard_event_checker = function(evt) { + if (this.is_disabled) { + return; + } + return setTimeout(((function(_this) { + return function() { + return _this.results_search(); + }; + })(this)), 50); + }; + + AbstractChosen.prototype.container_width = function() { + if (this.options.width != null) { + return this.options.width; + } else { + return this.form_field.offsetWidth + "px"; + } + }; + + AbstractChosen.prototype.include_option_in_results = function(option) { + if (this.is_multiple && (!this.display_selected_options && option.selected)) { + return false; + } + if (!this.display_disabled_options && option.disabled) { + return false; + } + if (option.empty) { + return false; + } + return true; + }; + + AbstractChosen.prototype.search_results_touchstart = function(evt) { + this.touch_started = true; + return this.search_results_mouseover(evt); + }; + + AbstractChosen.prototype.search_results_touchmove = function(evt) { + this.touch_started = false; + return this.search_results_mouseout(evt); + }; + + AbstractChosen.prototype.search_results_touchend = function(evt) { + if (this.touch_started) { + return this.search_results_mouseup(evt); + } + }; + + AbstractChosen.prototype.outerHTML = function(element) { + var tmp; + if (element.outerHTML) { + return element.outerHTML; + } + tmp = document.createElement("div"); + tmp.appendChild(element); + return tmp.innerHTML; + }; + + AbstractChosen.prototype.get_single_html = function() { + return "\n " + this.default_text + "\n
\n
\n
\n
\n \n
\n
    \n
    "; + }; + + AbstractChosen.prototype.get_multi_html = function() { + return "
      \n
    • \n \n
    • \n
    \n
    \n
      \n
      "; + }; + + AbstractChosen.prototype.get_no_results_html = function(terms) { + return "
    • \n " + this.results_none_found + " " + (this.escape_html(terms)) + "\n
    • "; + }; + + AbstractChosen.browser_is_supported = function() { + if ("Microsoft Internet Explorer" === window.navigator.appName) { + return document.documentMode >= 8; + } + if (/iP(od|hone)/i.test(window.navigator.userAgent) || /IEMobile/i.test(window.navigator.userAgent) || /Windows Phone/i.test(window.navigator.userAgent) || /BlackBerry/i.test(window.navigator.userAgent) || /BB10/i.test(window.navigator.userAgent) || /Android.*Mobile/i.test(window.navigator.userAgent)) { + return false; + } + return true; + }; + + AbstractChosen.default_multiple_text = "Select Some Options"; + + AbstractChosen.default_single_text = "Select an Option"; + + AbstractChosen.default_no_result_text = "No results match"; + + return AbstractChosen; + + })(); + + $ = jQuery; + + $.fn.extend({ + chosen: function(options) { + if (!AbstractChosen.browser_is_supported()) { + return this; + } + return this.each(function(input_field) { + var $this, chosen; + $this = $(this); + chosen = $this.data('chosen'); + if (options === 'destroy') { + if (chosen instanceof Chosen) { + chosen.destroy(); + } + return; + } + if (!(chosen instanceof Chosen)) { + $this.data('chosen', new Chosen(this, options)); + } + }); + } + }); + + Chosen = (function(superClass) { + extend(Chosen, superClass); + + function Chosen() { + return Chosen.__super__.constructor.apply(this, arguments); + } + + Chosen.prototype.setup = function() { + this.form_field_jq = $(this.form_field); + return this.current_selectedIndex = this.form_field.selectedIndex; + }; + + Chosen.prototype.set_up_html = function() { + var container_classes, container_props; + container_classes = ["chosen-container"]; + container_classes.push("chosen-container-" + (this.is_multiple ? "multi" : "single")); + if (this.inherit_select_classes && this.form_field.className) { + container_classes.push(this.form_field.className); + } + if (this.is_rtl) { + container_classes.push("chosen-rtl"); + } + container_props = { + 'class': container_classes.join(' '), + 'title': this.form_field.title + }; + if (this.form_field.id.length) { + container_props.id = this.form_field.id.replace(/[^\w]/g, '_') + "_chosen"; + } + this.container = $("
      ", container_props); + this.container.width(this.container_width()); + if (this.is_multiple) { + this.container.html(this.get_multi_html()); + } else { + this.container.html(this.get_single_html()); + } + this.form_field_jq.hide().after(this.container); + this.dropdown = this.container.find('div.chosen-drop').first(); + this.search_field = this.container.find('input').first(); + this.search_results = this.container.find('ul.chosen-results').first(); + this.search_field_scale(); + this.search_no_results = this.container.find('li.no-results').first(); + if (this.is_multiple) { + this.search_choices = this.container.find('ul.chosen-choices').first(); + this.search_container = this.container.find('li.search-field').first(); + } else { + this.search_container = this.container.find('div.chosen-search').first(); + this.selected_item = this.container.find('.chosen-single').first(); + } + this.results_build(); + this.set_tab_index(); + return this.set_label_behavior(); + }; + + Chosen.prototype.on_ready = function() { + return this.form_field_jq.trigger("chosen:ready", { + chosen: this + }); + }; + + Chosen.prototype.register_observers = function() { + this.container.on('touchstart.chosen', (function(_this) { + return function(evt) { + _this.container_mousedown(evt); + }; + })(this)); + this.container.on('touchend.chosen', (function(_this) { + return function(evt) { + _this.container_mouseup(evt); + }; + })(this)); + this.container.on('mousedown.chosen', (function(_this) { + return function(evt) { + _this.container_mousedown(evt); + }; + })(this)); + this.container.on('mouseup.chosen', (function(_this) { + return function(evt) { + _this.container_mouseup(evt); + }; + })(this)); + this.container.on('mouseenter.chosen', (function(_this) { + return function(evt) { + _this.mouse_enter(evt); + }; + })(this)); + this.container.on('mouseleave.chosen', (function(_this) { + return function(evt) { + _this.mouse_leave(evt); + }; + })(this)); + this.search_results.on('mouseup.chosen', (function(_this) { + return function(evt) { + _this.search_results_mouseup(evt); + }; + })(this)); + this.search_results.on('mouseover.chosen', (function(_this) { + return function(evt) { + _this.search_results_mouseover(evt); + }; + })(this)); + this.search_results.on('mouseout.chosen', (function(_this) { + return function(evt) { + _this.search_results_mouseout(evt); + }; + })(this)); + this.search_results.on('mousewheel.chosen DOMMouseScroll.chosen', (function(_this) { + return function(evt) { + _this.search_results_mousewheel(evt); + }; + })(this)); + this.search_results.on('touchstart.chosen', (function(_this) { + return function(evt) { + _this.search_results_touchstart(evt); + }; + })(this)); + this.search_results.on('touchmove.chosen', (function(_this) { + return function(evt) { + _this.search_results_touchmove(evt); + }; + })(this)); + this.search_results.on('touchend.chosen', (function(_this) { + return function(evt) { + _this.search_results_touchend(evt); + }; + })(this)); + this.form_field_jq.on("chosen:updated.chosen", (function(_this) { + return function(evt) { + _this.results_update_field(evt); + }; + })(this)); + this.form_field_jq.on("chosen:activate.chosen", (function(_this) { + return function(evt) { + _this.activate_field(evt); + }; + })(this)); + this.form_field_jq.on("chosen:open.chosen", (function(_this) { + return function(evt) { + _this.container_mousedown(evt); + }; + })(this)); + this.form_field_jq.on("chosen:close.chosen", (function(_this) { + return function(evt) { + _this.close_field(evt); + }; + })(this)); + this.search_field.on('blur.chosen', (function(_this) { + return function(evt) { + _this.input_blur(evt); + }; + })(this)); + this.search_field.on('keyup.chosen', (function(_this) { + return function(evt) { + _this.keyup_checker(evt); + }; + })(this)); + this.search_field.on('keydown.chosen', (function(_this) { + return function(evt) { + _this.keydown_checker(evt); + }; + })(this)); + this.search_field.on('focus.chosen', (function(_this) { + return function(evt) { + _this.input_focus(evt); + }; + })(this)); + this.search_field.on('cut.chosen', (function(_this) { + return function(evt) { + _this.clipboard_event_checker(evt); + }; + })(this)); + this.search_field.on('paste.chosen', (function(_this) { + return function(evt) { + _this.clipboard_event_checker(evt); + }; + })(this)); + if (this.is_multiple) { + return this.search_choices.on('click.chosen', (function(_this) { + return function(evt) { + _this.choices_click(evt); + }; + })(this)); + } else { + return this.container.on('click.chosen', function(evt) { + evt.preventDefault(); + }); + } + }; + + Chosen.prototype.destroy = function() { + $(this.container[0].ownerDocument).off('click.chosen', this.click_test_action); + if (this.form_field_label.length > 0) { + this.form_field_label.off('click.chosen'); + } + if (this.search_field[0].tabIndex) { + this.form_field_jq[0].tabIndex = this.search_field[0].tabIndex; + } + this.container.remove(); + this.form_field_jq.removeData('chosen'); + return this.form_field_jq.show(); + }; + + Chosen.prototype.search_field_disabled = function() { + this.is_disabled = this.form_field.disabled || this.form_field_jq.parents('fieldset').is(':disabled'); + this.container.toggleClass('chosen-disabled', this.is_disabled); + this.search_field[0].disabled = this.is_disabled; + if (!this.is_multiple) { + this.selected_item.off('focus.chosen', this.activate_field); + } + if (this.is_disabled) { + return this.close_field(); + } else if (!this.is_multiple) { + return this.selected_item.on('focus.chosen', this.activate_field); + } + }; + + Chosen.prototype.container_mousedown = function(evt) { + var ref; + if (this.is_disabled) { + return; + } + if (evt && ((ref = evt.type) === 'mousedown' || ref === 'touchstart') && !this.results_showing) { + evt.preventDefault(); + } + if (!((evt != null) && ($(evt.target)).hasClass("search-choice-close"))) { + if (!this.active_field) { + if (this.is_multiple) { + this.search_field.val(""); + } + $(this.container[0].ownerDocument).on('click.chosen', this.click_test_action); + this.results_show(); + } else if (!this.is_multiple && evt && (($(evt.target)[0] === this.selected_item[0]) || $(evt.target).parents("a.chosen-single").length)) { + evt.preventDefault(); + this.results_toggle(); + } + return this.activate_field(); + } + }; + + Chosen.prototype.container_mouseup = function(evt) { + if (evt.target.nodeName === "ABBR" && !this.is_disabled) { + return this.results_reset(evt); + } + }; + + Chosen.prototype.search_results_mousewheel = function(evt) { + var delta; + if (evt.originalEvent) { + delta = evt.originalEvent.deltaY || -evt.originalEvent.wheelDelta || evt.originalEvent.detail; + } + if (delta != null) { + evt.preventDefault(); + if (evt.type === 'DOMMouseScroll') { + delta = delta * 40; + } + return this.search_results.scrollTop(delta + this.search_results.scrollTop()); + } + }; + + Chosen.prototype.blur_test = function(evt) { + if (!this.active_field && this.container.hasClass("chosen-container-active")) { + return this.close_field(); + } + }; + + Chosen.prototype.close_field = function() { + $(this.container[0].ownerDocument).off("click.chosen", this.click_test_action); + this.active_field = false; + this.results_hide(); + this.container.removeClass("chosen-container-active"); + this.clear_backstroke(); + this.show_search_field_default(); + this.search_field_scale(); + return this.search_field.blur(); + }; + + Chosen.prototype.activate_field = function() { + if (this.is_disabled) { + return; + } + this.container.addClass("chosen-container-active"); + this.active_field = true; + this.search_field.val(this.search_field.val()); + return this.search_field.focus(); + }; + + Chosen.prototype.test_active_click = function(evt) { + var active_container; + active_container = $(evt.target).closest('.chosen-container'); + if (active_container.length && this.container[0] === active_container[0]) { + return this.active_field = true; + } else { + return this.close_field(); + } + }; + + Chosen.prototype.results_build = function() { + this.parsing = true; + this.selected_option_count = null; + this.results_data = SelectParser.select_to_array(this.form_field); + if (this.is_multiple) { + this.search_choices.find("li.search-choice").remove(); + } else if (!this.is_multiple) { + this.single_set_selected_text(); + if (this.disable_search || this.form_field.options.length <= this.disable_search_threshold) { + this.search_field[0].readOnly = true; + this.container.addClass("chosen-container-single-nosearch"); + } else { + this.search_field[0].readOnly = false; + this.container.removeClass("chosen-container-single-nosearch"); + } + } + this.update_results_content(this.results_option_build({ + first: true + })); + this.search_field_disabled(); + this.show_search_field_default(); + this.search_field_scale(); + return this.parsing = false; + }; + + Chosen.prototype.result_do_highlight = function(el) { + var high_bottom, high_top, maxHeight, visible_bottom, visible_top; + if (el.length) { + this.result_clear_highlight(); + this.result_highlight = el; + this.result_highlight.addClass("highlighted"); + maxHeight = parseInt(this.search_results.css("maxHeight"), 10); + visible_top = this.search_results.scrollTop(); + visible_bottom = maxHeight + visible_top; + high_top = this.result_highlight.position().top + this.search_results.scrollTop(); + high_bottom = high_top + this.result_highlight.outerHeight(); + if (high_bottom >= visible_bottom) { + return this.search_results.scrollTop((high_bottom - maxHeight) > 0 ? high_bottom - maxHeight : 0); + } else if (high_top < visible_top) { + return this.search_results.scrollTop(high_top); + } + } + }; + + Chosen.prototype.result_clear_highlight = function() { + if (this.result_highlight) { + this.result_highlight.removeClass("highlighted"); + } + return this.result_highlight = null; + }; + + Chosen.prototype.results_show = function() { + if (this.is_multiple && this.max_selected_options <= this.choices_count()) { + this.form_field_jq.trigger("chosen:maxselected", { + chosen: this + }); + return false; + } + this.container.addClass("chosen-with-drop"); + this.results_showing = true; + this.search_field.focus(); + this.search_field.val(this.get_search_field_value()); + this.winnow_results(); + return this.form_field_jq.trigger("chosen:showing_dropdown", { + chosen: this + }); + }; + + Chosen.prototype.update_results_content = function(content) { + return this.search_results.html(content); + }; + + Chosen.prototype.results_hide = function() { + if (this.results_showing) { + this.result_clear_highlight(); + this.container.removeClass("chosen-with-drop"); + this.form_field_jq.trigger("chosen:hiding_dropdown", { + chosen: this + }); + } + return this.results_showing = false; + }; + + Chosen.prototype.set_tab_index = function(el) { + var ti; + if (this.form_field.tabIndex) { + ti = this.form_field.tabIndex; + this.form_field.tabIndex = -1; + return this.search_field[0].tabIndex = ti; + } + }; + + Chosen.prototype.set_label_behavior = function() { + this.form_field_label = this.form_field_jq.parents("label"); + if (!this.form_field_label.length && this.form_field.id.length) { + this.form_field_label = $("label[for='" + this.form_field.id + "']"); + } + if (this.form_field_label.length > 0) { + return this.form_field_label.on('click.chosen', this.label_click_handler); + } + }; + + Chosen.prototype.show_search_field_default = function() { + if (this.is_multiple && this.choices_count() < 1 && !this.active_field) { + this.search_field.val(this.default_text); + return this.search_field.addClass("default"); + } else { + this.search_field.val(""); + return this.search_field.removeClass("default"); + } + }; + + Chosen.prototype.search_results_mouseup = function(evt) { + var target; + target = $(evt.target).hasClass("active-result") ? $(evt.target) : $(evt.target).parents(".active-result").first(); + if (target.length) { + this.result_highlight = target; + this.result_select(evt); + return this.search_field.focus(); + } + }; + + Chosen.prototype.search_results_mouseover = function(evt) { + var target; + target = $(evt.target).hasClass("active-result") ? $(evt.target) : $(evt.target).parents(".active-result").first(); + if (target) { + return this.result_do_highlight(target); + } + }; + + Chosen.prototype.search_results_mouseout = function(evt) { + if ($(evt.target).hasClass("active-result") || $(evt.target).parents('.active-result').first()) { + return this.result_clear_highlight(); + } + }; + + Chosen.prototype.choice_build = function(item) { + var choice, close_link; + choice = $('
    • ', { + "class": "search-choice" + }).html("" + (this.choice_label(item)) + ""); + if (item.disabled) { + choice.addClass('search-choice-disabled'); + } else { + close_link = $('', { + "class": 'search-choice-close', + 'data-option-array-index': item.array_index + }); + close_link.on('click.chosen', (function(_this) { + return function(evt) { + return _this.choice_destroy_link_click(evt); + }; + })(this)); + choice.append(close_link); + } + return this.search_container.before(choice); + }; + + Chosen.prototype.choice_destroy_link_click = function(evt) { + evt.preventDefault(); + evt.stopPropagation(); + if (!this.is_disabled) { + return this.choice_destroy($(evt.target)); + } + }; + + Chosen.prototype.choice_destroy = function(link) { + if (this.result_deselect(link[0].getAttribute("data-option-array-index"))) { + if (this.active_field) { + this.search_field.focus(); + } else { + this.show_search_field_default(); + } + if (this.is_multiple && this.choices_count() > 0 && this.get_search_field_value().length < 1) { + this.results_hide(); + } + link.parents('li').first().remove(); + return this.search_field_scale(); + } + }; + + Chosen.prototype.results_reset = function() { + this.reset_single_select_options(); + this.form_field.options[0].selected = true; + this.single_set_selected_text(); + this.show_search_field_default(); + this.results_reset_cleanup(); + this.trigger_form_field_change(); + if (this.active_field) { + return this.results_hide(); + } + }; + + Chosen.prototype.results_reset_cleanup = function() { + this.current_selectedIndex = this.form_field.selectedIndex; + return this.selected_item.find("abbr").remove(); + }; + + Chosen.prototype.result_select = function(evt) { + var high, item; + if (this.result_highlight) { + high = this.result_highlight; + this.result_clear_highlight(); + if (this.is_multiple && this.max_selected_options <= this.choices_count()) { + this.form_field_jq.trigger("chosen:maxselected", { + chosen: this + }); + return false; + } + if (this.is_multiple) { + high.removeClass("active-result"); + } else { + this.reset_single_select_options(); + } + high.addClass("result-selected"); + item = this.results_data[high[0].getAttribute("data-option-array-index")]; + item.selected = true; + this.form_field.options[item.options_index].selected = true; + this.selected_option_count = null; + this.search_field.val(""); + if (this.is_multiple) { + this.choice_build(item); + } else { + this.single_set_selected_text(this.choice_label(item)); + } + if (this.is_multiple && (!this.hide_results_on_select || (evt.metaKey || evt.ctrlKey))) { + this.winnow_results(); + } else { + this.results_hide(); + this.show_search_field_default(); + } + if (this.is_multiple || this.form_field.selectedIndex !== this.current_selectedIndex) { + this.trigger_form_field_change({ + selected: this.form_field.options[item.options_index].value + }); + } + this.current_selectedIndex = this.form_field.selectedIndex; + evt.preventDefault(); + return this.search_field_scale(); + } + }; + + Chosen.prototype.single_set_selected_text = function(text) { + if (text == null) { + text = this.default_text; + } + if (text === this.default_text) { + this.selected_item.addClass("chosen-default"); + } else { + this.single_deselect_control_build(); + this.selected_item.removeClass("chosen-default"); + } + return this.selected_item.find("span").html(text); + }; + + Chosen.prototype.result_deselect = function(pos) { + var result_data; + result_data = this.results_data[pos]; + if (!this.form_field.options[result_data.options_index].disabled) { + result_data.selected = false; + this.form_field.options[result_data.options_index].selected = false; + this.selected_option_count = null; + this.result_clear_highlight(); + if (this.results_showing) { + this.winnow_results(); + } + this.trigger_form_field_change({ + deselected: this.form_field.options[result_data.options_index].value + }); + this.search_field_scale(); + return true; + } else { + return false; + } + }; + + Chosen.prototype.single_deselect_control_build = function() { + if (!this.allow_single_deselect) { + return; + } + if (!this.selected_item.find("abbr").length) { + this.selected_item.find("span").first().after(""); + } + return this.selected_item.addClass("chosen-single-with-deselect"); + }; + + Chosen.prototype.get_search_field_value = function() { + return this.search_field.val(); + }; + + Chosen.prototype.get_search_text = function() { + return $.trim(this.get_search_field_value()); + }; + + Chosen.prototype.escape_html = function(text) { + return $('
      ').text(text).html(); + }; + + Chosen.prototype.winnow_results_set_highlight = function() { + var do_high, selected_results; + selected_results = !this.is_multiple ? this.search_results.find(".result-selected.active-result") : []; + do_high = selected_results.length ? selected_results.first() : this.search_results.find(".active-result").first(); + if (do_high != null) { + return this.result_do_highlight(do_high); + } + }; + + Chosen.prototype.no_results = function(terms) { + var no_results_html; + no_results_html = this.get_no_results_html(terms); + this.search_results.append(no_results_html); + return this.form_field_jq.trigger("chosen:no_results", { + chosen: this + }); + }; + + Chosen.prototype.no_results_clear = function() { + return this.search_results.find(".no-results").remove(); + }; + + Chosen.prototype.keydown_arrow = function() { + var next_sib; + if (this.results_showing && this.result_highlight) { + next_sib = this.result_highlight.nextAll("li.active-result").first(); + if (next_sib) { + return this.result_do_highlight(next_sib); + } + } else { + return this.results_show(); + } + }; + + Chosen.prototype.keyup_arrow = function() { + var prev_sibs; + if (!this.results_showing && !this.is_multiple) { + return this.results_show(); + } else if (this.result_highlight) { + prev_sibs = this.result_highlight.prevAll("li.active-result"); + if (prev_sibs.length) { + return this.result_do_highlight(prev_sibs.first()); + } else { + if (this.choices_count() > 0) { + this.results_hide(); + } + return this.result_clear_highlight(); + } + } + }; + + Chosen.prototype.keydown_backstroke = function() { + var next_available_destroy; + if (this.pending_backstroke) { + this.choice_destroy(this.pending_backstroke.find("a").first()); + return this.clear_backstroke(); + } else { + next_available_destroy = this.search_container.siblings("li.search-choice").last(); + if (next_available_destroy.length && !next_available_destroy.hasClass("search-choice-disabled")) { + this.pending_backstroke = next_available_destroy; + if (this.single_backstroke_delete) { + return this.keydown_backstroke(); + } else { + return this.pending_backstroke.addClass("search-choice-focus"); + } + } + } + }; + + Chosen.prototype.clear_backstroke = function() { + if (this.pending_backstroke) { + this.pending_backstroke.removeClass("search-choice-focus"); + } + return this.pending_backstroke = null; + }; + + Chosen.prototype.search_field_scale = function() { + var div, i, len, style, style_block, styles, width; + if (!this.is_multiple) { + return; + } + style_block = { + position: 'absolute', + left: '-1000px', + top: '-1000px', + display: 'none', + whiteSpace: 'pre' + }; + styles = ['fontSize', 'fontStyle', 'fontWeight', 'fontFamily', 'lineHeight', 'textTransform', 'letterSpacing']; + for (i = 0, len = styles.length; i < len; i++) { + style = styles[i]; + style_block[style] = this.search_field.css(style); + } + div = $('
      ').css(style_block); + div.text(this.get_search_field_value()); + $('body').append(div); + width = div.width() + 25; + div.remove(); + if (this.container.is(':visible')) { + width = Math.min(this.container.outerWidth() - 10, width); + } + return this.search_field.width(width); + }; + + Chosen.prototype.trigger_form_field_change = function(extra) { + this.form_field_jq.trigger("input", extra); + return this.form_field_jq.trigger("change", extra); + }; + + return Chosen; + + })(AbstractChosen); + +}).call(this); diff --git a/public/asset/js/lib/chosen/chosen.jquery.min.js b/public/asset/js/lib/chosen/chosen.jquery.min.js new file mode 100644 index 0000000..d67677f --- /dev/null +++ b/public/asset/js/lib/chosen/chosen.jquery.min.js @@ -0,0 +1,3 @@ +/* Chosen v1.8.2 | (c) 2011-2017 by Harvest | MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md */ + +(function(){var t,e,s,i,n=function(t,e){return function(){return t.apply(e,arguments)}},r=function(t,e){function s(){this.constructor=t}for(var i in e)o.call(e,i)&&(t[i]=e[i]);return s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype,t},o={}.hasOwnProperty;(i=function(){function t(){this.options_index=0,this.parsed=[]}return t.prototype.add_node=function(t){return"OPTGROUP"===t.nodeName.toUpperCase()?this.add_group(t):this.add_option(t)},t.prototype.add_group=function(t){var e,s,i,n,r,o;for(e=this.parsed.length,this.parsed.push({array_index:e,group:!0,label:t.label,title:t.title?t.title:void 0,children:0,disabled:t.disabled,classes:t.className}),o=[],s=0,i=(r=t.childNodes).length;s"+t.group_label+""+t.html:t.html},t.prototype.mouse_enter=function(){return this.mouse_on_container=!0},t.prototype.mouse_leave=function(){return this.mouse_on_container=!1},t.prototype.input_focus=function(t){if(this.is_multiple){if(!this.active_field)return setTimeout(function(t){return function(){return t.container_mousedown()}}(this),50)}else if(!this.active_field)return this.activate_field()},t.prototype.input_blur=function(t){if(!this.mouse_on_container)return this.active_field=!1,setTimeout(function(t){return function(){return t.blur_test()}}(this),100)},t.prototype.label_click_handler=function(t){return this.is_multiple?this.container_mousedown(t):this.activate_field()},t.prototype.results_option_build=function(t){var e,s,i,n,r,o,h;for(e="",h=0,n=0,r=(o=this.results_data).length;n=this.max_shown_results));n++);return e},t.prototype.result_add_option=function(t){var e,s;return t.search_match&&this.include_option_in_results(t)?(e=[],t.disabled||t.selected&&this.is_multiple||e.push("active-result"),!t.disabled||t.selected&&this.is_multiple||e.push("disabled-result"),t.selected&&e.push("result-selected"),null!=t.group_array_index&&e.push("group-option"),""!==t.classes&&e.push(t.classes),s=document.createElement("li"),s.className=e.join(" "),s.style.cssText=t.style,s.setAttribute("data-option-array-index",t.array_index),s.innerHTML=t.highlighted_html||t.html,t.title&&(s.title=t.title),this.outerHTML(s)):""},t.prototype.result_add_group=function(t){var e,s;return(t.search_match||t.group_match)&&t.active_options>0?((e=[]).push("group-result"),t.classes&&e.push(t.classes),s=document.createElement("li"),s.className=e.join(" "),s.innerHTML=t.highlighted_html||this.escape_html(t.label),t.title&&(s.title=t.title),this.outerHTML(s)):""},t.prototype.results_update_field=function(){if(this.set_default_text(),this.is_multiple||this.results_reset_cleanup(),this.result_clear_highlight(),this.results_build(),this.results_showing)return this.winnow_results()},t.prototype.reset_single_select_options=function(){var t,e,s,i,n;for(n=[],t=0,e=(s=this.results_data).length;t"+this.escape_html(e)+""+this.escape_html(d)),null!=_&&(_.group_match=!0)):null!=n.group_array_index&&this.results_data[n.group_array_index].search_match&&(n.search_match=!0)));return this.result_clear_highlight(),c<1&&o.length?(this.update_results_content(""),this.no_results(o)):(this.update_results_content(this.results_option_build()),this.winnow_results_set_highlight())},t.prototype.get_search_regex=function(t){var e,s;return s=this.search_contains?t:"(^|\\s|\\b)"+t+"[^\\s]*",this.enable_split_word_search||this.search_contains||(s="^"+s),e=this.case_sensitive_search?"":"i",new RegExp(s,e)},t.prototype.search_string_match=function(t,e){var s;return s=e.exec(t),!this.search_contains&&(null!=s?s[1]:void 0)&&(s.index+=1),s},t.prototype.choices_count=function(){var t,e,s;if(null!=this.selected_option_count)return this.selected_option_count;for(this.selected_option_count=0,t=0,e=(s=this.form_field.options).length;t0?this.keydown_backstroke():this.pending_backstroke||(this.result_clear_highlight(),this.results_search());break;case 13:t.preventDefault(),this.results_showing&&this.result_select(t);break;case 27:this.results_showing&&this.results_hide();break;case 9:case 16:case 17:case 18:case 38:case 40:case 91:break;default:this.results_search()}},t.prototype.clipboard_event_checker=function(t){if(!this.is_disabled)return setTimeout(function(t){return function(){return t.results_search()}}(this),50)},t.prototype.container_width=function(){return null!=this.options.width?this.options.width:this.form_field.offsetWidth+"px"},t.prototype.include_option_in_results=function(t){return!(this.is_multiple&&!this.display_selected_options&&t.selected)&&(!(!this.display_disabled_options&&t.disabled)&&!t.empty)},t.prototype.search_results_touchstart=function(t){return this.touch_started=!0,this.search_results_mouseover(t)},t.prototype.search_results_touchmove=function(t){return this.touch_started=!1,this.search_results_mouseout(t)},t.prototype.search_results_touchend=function(t){if(this.touch_started)return this.search_results_mouseup(t)},t.prototype.outerHTML=function(t){var e;return t.outerHTML?t.outerHTML:((e=document.createElement("div")).appendChild(t),e.innerHTML)},t.prototype.get_single_html=function(){return'\n '+this.default_text+'\n
      \n
      \n
      \n \n
        \n
        '},t.prototype.get_multi_html=function(){return'
          \n
        • \n \n
        • \n
        \n
        \n
          \n
          '},t.prototype.get_no_results_html=function(t){return'
        • \n '+this.results_none_found+" "+this.escape_html(t)+"\n
        • "},t.browser_is_supported=function(){return"Microsoft Internet Explorer"===window.navigator.appName?document.documentMode>=8:!(/iP(od|hone)/i.test(window.navigator.userAgent)||/IEMobile/i.test(window.navigator.userAgent)||/Windows Phone/i.test(window.navigator.userAgent)||/BlackBerry/i.test(window.navigator.userAgent)||/BB10/i.test(window.navigator.userAgent)||/Android.*Mobile/i.test(window.navigator.userAgent))},t.default_multiple_text="Select Some Options",t.default_single_text="Select an Option",t.default_no_result_text="No results match",t}(),(t=jQuery).fn.extend({chosen:function(i){return e.browser_is_supported()?this.each(function(e){var n,r;r=(n=t(this)).data("chosen"),"destroy"!==i?r instanceof s||n.data("chosen",new s(this,i)):r instanceof s&&r.destroy()}):this}}),s=function(s){function n(){return n.__super__.constructor.apply(this,arguments)}return r(n,e),n.prototype.setup=function(){return this.form_field_jq=t(this.form_field),this.current_selectedIndex=this.form_field.selectedIndex},n.prototype.set_up_html=function(){var e,s;return(e=["chosen-container"]).push("chosen-container-"+(this.is_multiple?"multi":"single")),this.inherit_select_classes&&this.form_field.className&&e.push(this.form_field.className),this.is_rtl&&e.push("chosen-rtl"),s={"class":e.join(" "),title:this.form_field.title},this.form_field.id.length&&(s.id=this.form_field.id.replace(/[^\w]/g,"_")+"_chosen"),this.container=t("
          ",s),this.container.width(this.container_width()),this.is_multiple?this.container.html(this.get_multi_html()):this.container.html(this.get_single_html()),this.form_field_jq.hide().after(this.container),this.dropdown=this.container.find("div.chosen-drop").first(),this.search_field=this.container.find("input").first(),this.search_results=this.container.find("ul.chosen-results").first(),this.search_field_scale(),this.search_no_results=this.container.find("li.no-results").first(),this.is_multiple?(this.search_choices=this.container.find("ul.chosen-choices").first(),this.search_container=this.container.find("li.search-field").first()):(this.search_container=this.container.find("div.chosen-search").first(),this.selected_item=this.container.find(".chosen-single").first()),this.results_build(),this.set_tab_index(),this.set_label_behavior()},n.prototype.on_ready=function(){return this.form_field_jq.trigger("chosen:ready",{chosen:this})},n.prototype.register_observers=function(){return this.container.on("touchstart.chosen",function(t){return function(e){t.container_mousedown(e)}}(this)),this.container.on("touchend.chosen",function(t){return function(e){t.container_mouseup(e)}}(this)),this.container.on("mousedown.chosen",function(t){return function(e){t.container_mousedown(e)}}(this)),this.container.on("mouseup.chosen",function(t){return function(e){t.container_mouseup(e)}}(this)),this.container.on("mouseenter.chosen",function(t){return function(e){t.mouse_enter(e)}}(this)),this.container.on("mouseleave.chosen",function(t){return function(e){t.mouse_leave(e)}}(this)),this.search_results.on("mouseup.chosen",function(t){return function(e){t.search_results_mouseup(e)}}(this)),this.search_results.on("mouseover.chosen",function(t){return function(e){t.search_results_mouseover(e)}}(this)),this.search_results.on("mouseout.chosen",function(t){return function(e){t.search_results_mouseout(e)}}(this)),this.search_results.on("mousewheel.chosen DOMMouseScroll.chosen",function(t){return function(e){t.search_results_mousewheel(e)}}(this)),this.search_results.on("touchstart.chosen",function(t){return function(e){t.search_results_touchstart(e)}}(this)),this.search_results.on("touchmove.chosen",function(t){return function(e){t.search_results_touchmove(e)}}(this)),this.search_results.on("touchend.chosen",function(t){return function(e){t.search_results_touchend(e)}}(this)),this.form_field_jq.on("chosen:updated.chosen",function(t){return function(e){t.results_update_field(e)}}(this)),this.form_field_jq.on("chosen:activate.chosen",function(t){return function(e){t.activate_field(e)}}(this)),this.form_field_jq.on("chosen:open.chosen",function(t){return function(e){t.container_mousedown(e)}}(this)),this.form_field_jq.on("chosen:close.chosen",function(t){return function(e){t.close_field(e)}}(this)),this.search_field.on("blur.chosen",function(t){return function(e){t.input_blur(e)}}(this)),this.search_field.on("keyup.chosen",function(t){return function(e){t.keyup_checker(e)}}(this)),this.search_field.on("keydown.chosen",function(t){return function(e){t.keydown_checker(e)}}(this)),this.search_field.on("focus.chosen",function(t){return function(e){t.input_focus(e)}}(this)),this.search_field.on("cut.chosen",function(t){return function(e){t.clipboard_event_checker(e)}}(this)),this.search_field.on("paste.chosen",function(t){return function(e){t.clipboard_event_checker(e)}}(this)),this.is_multiple?this.search_choices.on("click.chosen",function(t){return function(e){t.choices_click(e)}}(this)):this.container.on("click.chosen",function(t){t.preventDefault()})},n.prototype.destroy=function(){return t(this.container[0].ownerDocument).off("click.chosen",this.click_test_action),this.form_field_label.length>0&&this.form_field_label.off("click.chosen"),this.search_field[0].tabIndex&&(this.form_field_jq[0].tabIndex=this.search_field[0].tabIndex),this.container.remove(),this.form_field_jq.removeData("chosen"),this.form_field_jq.show()},n.prototype.search_field_disabled=function(){return this.is_disabled=this.form_field.disabled||this.form_field_jq.parents("fieldset").is(":disabled"),this.container.toggleClass("chosen-disabled",this.is_disabled),this.search_field[0].disabled=this.is_disabled,this.is_multiple||this.selected_item.off("focus.chosen",this.activate_field),this.is_disabled?this.close_field():this.is_multiple?void 0:this.selected_item.on("focus.chosen",this.activate_field)},n.prototype.container_mousedown=function(e){var s;if(!this.is_disabled)return!e||"mousedown"!==(s=e.type)&&"touchstart"!==s||this.results_showing||e.preventDefault(),null!=e&&t(e.target).hasClass("search-choice-close")?void 0:(this.active_field?this.is_multiple||!e||t(e.target)[0]!==this.selected_item[0]&&!t(e.target).parents("a.chosen-single").length||(e.preventDefault(),this.results_toggle()):(this.is_multiple&&this.search_field.val(""),t(this.container[0].ownerDocument).on("click.chosen",this.click_test_action),this.results_show()),this.activate_field())},n.prototype.container_mouseup=function(t){if("ABBR"===t.target.nodeName&&!this.is_disabled)return this.results_reset(t)},n.prototype.search_results_mousewheel=function(t){var e;if(t.originalEvent&&(e=t.originalEvent.deltaY||-t.originalEvent.wheelDelta||t.originalEvent.detail),null!=e)return t.preventDefault(),"DOMMouseScroll"===t.type&&(e*=40),this.search_results.scrollTop(e+this.search_results.scrollTop())},n.prototype.blur_test=function(t){if(!this.active_field&&this.container.hasClass("chosen-container-active"))return this.close_field()},n.prototype.close_field=function(){return t(this.container[0].ownerDocument).off("click.chosen",this.click_test_action),this.active_field=!1,this.results_hide(),this.container.removeClass("chosen-container-active"),this.clear_backstroke(),this.show_search_field_default(),this.search_field_scale(),this.search_field.blur()},n.prototype.activate_field=function(){if(!this.is_disabled)return this.container.addClass("chosen-container-active"),this.active_field=!0,this.search_field.val(this.search_field.val()),this.search_field.focus()},n.prototype.test_active_click=function(e){var s;return(s=t(e.target).closest(".chosen-container")).length&&this.container[0]===s[0]?this.active_field=!0:this.close_field()},n.prototype.results_build=function(){return this.parsing=!0,this.selected_option_count=null,this.results_data=i.select_to_array(this.form_field),this.is_multiple?this.search_choices.find("li.search-choice").remove():this.is_multiple||(this.single_set_selected_text(),this.disable_search||this.form_field.options.length<=this.disable_search_threshold?(this.search_field[0].readOnly=!0,this.container.addClass("chosen-container-single-nosearch")):(this.search_field[0].readOnly=!1,this.container.removeClass("chosen-container-single-nosearch"))),this.update_results_content(this.results_option_build({first:!0})),this.search_field_disabled(),this.show_search_field_default(),this.search_field_scale(),this.parsing=!1},n.prototype.result_do_highlight=function(t){var e,s,i,n,r;if(t.length){if(this.result_clear_highlight(),this.result_highlight=t,this.result_highlight.addClass("highlighted"),i=parseInt(this.search_results.css("maxHeight"),10),r=this.search_results.scrollTop(),n=i+r,s=this.result_highlight.position().top+this.search_results.scrollTop(),(e=s+this.result_highlight.outerHeight())>=n)return this.search_results.scrollTop(e-i>0?e-i:0);if(s0)return this.form_field_label.on("click.chosen",this.label_click_handler)},n.prototype.show_search_field_default=function(){return this.is_multiple&&this.choices_count()<1&&!this.active_field?(this.search_field.val(this.default_text),this.search_field.addClass("default")):(this.search_field.val(""),this.search_field.removeClass("default"))},n.prototype.search_results_mouseup=function(e){var s;if((s=t(e.target).hasClass("active-result")?t(e.target):t(e.target).parents(".active-result").first()).length)return this.result_highlight=s,this.result_select(e),this.search_field.focus()},n.prototype.search_results_mouseover=function(e){var s;if(s=t(e.target).hasClass("active-result")?t(e.target):t(e.target).parents(".active-result").first())return this.result_do_highlight(s)},n.prototype.search_results_mouseout=function(e){if(t(e.target).hasClass("active-result")||t(e.target).parents(".active-result").first())return this.result_clear_highlight()},n.prototype.choice_build=function(e){var s,i;return s=t("
        • ",{"class":"search-choice"}).html(""+this.choice_label(e)+""),e.disabled?s.addClass("search-choice-disabled"):((i=t("",{"class":"search-choice-close","data-option-array-index":e.array_index})).on("click.chosen",function(t){return function(e){return t.choice_destroy_link_click(e)}}(this)),s.append(i)),this.search_container.before(s)},n.prototype.choice_destroy_link_click=function(e){if(e.preventDefault(),e.stopPropagation(),!this.is_disabled)return this.choice_destroy(t(e.target))},n.prototype.choice_destroy=function(t){if(this.result_deselect(t[0].getAttribute("data-option-array-index")))return this.active_field?this.search_field.focus():this.show_search_field_default(),this.is_multiple&&this.choices_count()>0&&this.get_search_field_value().length<1&&this.results_hide(),t.parents("li").first().remove(),this.search_field_scale()},n.prototype.results_reset=function(){if(this.reset_single_select_options(),this.form_field.options[0].selected=!0,this.single_set_selected_text(),this.show_search_field_default(),this.results_reset_cleanup(),this.trigger_form_field_change(),this.active_field)return this.results_hide()},n.prototype.results_reset_cleanup=function(){return this.current_selectedIndex=this.form_field.selectedIndex,this.selected_item.find("abbr").remove()},n.prototype.result_select=function(t){var e,s;if(this.result_highlight)return e=this.result_highlight,this.result_clear_highlight(),this.is_multiple&&this.max_selected_options<=this.choices_count()?(this.form_field_jq.trigger("chosen:maxselected",{chosen:this}),!1):(this.is_multiple?e.removeClass("active-result"):this.reset_single_select_options(),e.addClass("result-selected"),s=this.results_data[e[0].getAttribute("data-option-array-index")],s.selected=!0,this.form_field.options[s.options_index].selected=!0,this.selected_option_count=null,this.search_field.val(""),this.is_multiple?this.choice_build(s):this.single_set_selected_text(this.choice_label(s)),this.is_multiple&&(!this.hide_results_on_select||t.metaKey||t.ctrlKey)?this.winnow_results():(this.results_hide(),this.show_search_field_default()),(this.is_multiple||this.form_field.selectedIndex!==this.current_selectedIndex)&&this.trigger_form_field_change({selected:this.form_field.options[s.options_index].value}),this.current_selectedIndex=this.form_field.selectedIndex,t.preventDefault(),this.search_field_scale())},n.prototype.single_set_selected_text=function(t){return null==t&&(t=this.default_text),t===this.default_text?this.selected_item.addClass("chosen-default"):(this.single_deselect_control_build(),this.selected_item.removeClass("chosen-default")),this.selected_item.find("span").html(t)},n.prototype.result_deselect=function(t){var e;return e=this.results_data[t],!this.form_field.options[e.options_index].disabled&&(e.selected=!1,this.form_field.options[e.options_index].selected=!1,this.selected_option_count=null,this.result_clear_highlight(),this.results_showing&&this.winnow_results(),this.trigger_form_field_change({deselected:this.form_field.options[e.options_index].value}),this.search_field_scale(),!0)},n.prototype.single_deselect_control_build=function(){if(this.allow_single_deselect)return this.selected_item.find("abbr").length||this.selected_item.find("span").first().after(''),this.selected_item.addClass("chosen-single-with-deselect")},n.prototype.get_search_field_value=function(){return this.search_field.val()},n.prototype.get_search_text=function(){return t.trim(this.get_search_field_value())},n.prototype.escape_html=function(e){return t("
          ").text(e).html()},n.prototype.winnow_results_set_highlight=function(){var t,e;if(e=this.is_multiple?[]:this.search_results.find(".result-selected.active-result"),null!=(t=e.length?e.first():this.search_results.find(".active-result").first()))return this.result_do_highlight(t)},n.prototype.no_results=function(t){var e;return e=this.get_no_results_html(t),this.search_results.append(e),this.form_field_jq.trigger("chosen:no_results",{chosen:this})},n.prototype.no_results_clear=function(){return this.search_results.find(".no-results").remove()},n.prototype.keydown_arrow=function(){var t;return this.results_showing&&this.result_highlight?(t=this.result_highlight.nextAll("li.active-result").first())?this.result_do_highlight(t):void 0:this.results_show()},n.prototype.keyup_arrow=function(){var t;return this.results_showing||this.is_multiple?this.result_highlight?(t=this.result_highlight.prevAll("li.active-result")).length?this.result_do_highlight(t.first()):(this.choices_count()>0&&this.results_hide(),this.result_clear_highlight()):void 0:this.results_show()},n.prototype.keydown_backstroke=function(){var t;return this.pending_backstroke?(this.choice_destroy(this.pending_backstroke.find("a").first()),this.clear_backstroke()):(t=this.search_container.siblings("li.search-choice").last()).length&&!t.hasClass("search-choice-disabled")?(this.pending_backstroke=t,this.single_backstroke_delete?this.keydown_backstroke():this.pending_backstroke.addClass("search-choice-focus")):void 0},n.prototype.clear_backstroke=function(){return this.pending_backstroke&&this.pending_backstroke.removeClass("search-choice-focus"),this.pending_backstroke=null},n.prototype.search_field_scale=function(){var e,s,i,n,r,o,h;if(this.is_multiple){for(r={position:"absolute",left:"-1000px",top:"-1000px",display:"none",whiteSpace:"pre"},s=0,i=(o=["fontSize","fontStyle","fontWeight","fontFamily","lineHeight","textTransform","letterSpacing"]).length;s").css(r)).text(this.get_search_field_value()),t("body").append(e),h=e.width()+25,e.remove(),this.container.is(":visible")&&(h=Math.min(this.container.outerWidth()-10,h)),this.search_field.width(h)}},n.prototype.trigger_form_field_change=function(t){return this.form_field_jq.trigger("input",t),this.form_field_jq.trigger("change",t)},n}()}).call(this); \ No newline at end of file diff --git a/public/asset/js/lib/chosen/chosen.proto.js b/public/asset/js/lib/chosen/chosen.proto.js new file mode 100644 index 0000000..ea517ad --- /dev/null +++ b/public/asset/js/lib/chosen/chosen.proto.js @@ -0,0 +1,1389 @@ +/*! +Chosen, a Select Box Enhancer for jQuery and Prototype +by Patrick Filler for Harvest, http://getharvest.com + +Version 1.8.2 +Full source at https://github.com/harvesthq/chosen +Copyright (c) 2011-2017 Harvest http://getharvest.com + +MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md +This file is generated by `grunt build`, do not edit it by hand. +*/ + +(function() { + var AbstractChosen, SelectParser, + bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }, + extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, + hasProp = {}.hasOwnProperty; + + SelectParser = (function() { + function SelectParser() { + this.options_index = 0; + this.parsed = []; + } + + SelectParser.prototype.add_node = function(child) { + if (child.nodeName.toUpperCase() === "OPTGROUP") { + return this.add_group(child); + } else { + return this.add_option(child); + } + }; + + SelectParser.prototype.add_group = function(group) { + var group_position, i, len, option, ref, results1; + group_position = this.parsed.length; + this.parsed.push({ + array_index: group_position, + group: true, + label: group.label, + title: group.title ? group.title : void 0, + children: 0, + disabled: group.disabled, + classes: group.className + }); + ref = group.childNodes; + results1 = []; + for (i = 0, len = ref.length; i < len; i++) { + option = ref[i]; + results1.push(this.add_option(option, group_position, group.disabled)); + } + return results1; + }; + + SelectParser.prototype.add_option = function(option, group_position, group_disabled) { + if (option.nodeName.toUpperCase() === "OPTION") { + if (option.text !== "") { + if (group_position != null) { + this.parsed[group_position].children += 1; + } + this.parsed.push({ + array_index: this.parsed.length, + options_index: this.options_index, + value: option.value, + text: option.text, + html: option.innerHTML, + title: option.title ? option.title : void 0, + selected: option.selected, + disabled: group_disabled === true ? group_disabled : option.disabled, + group_array_index: group_position, + group_label: group_position != null ? this.parsed[group_position].label : null, + classes: option.className, + style: option.style.cssText + }); + } else { + this.parsed.push({ + array_index: this.parsed.length, + options_index: this.options_index, + empty: true + }); + } + return this.options_index += 1; + } + }; + + return SelectParser; + + })(); + + SelectParser.select_to_array = function(select) { + var child, i, len, parser, ref; + parser = new SelectParser(); + ref = select.childNodes; + for (i = 0, len = ref.length; i < len; i++) { + child = ref[i]; + parser.add_node(child); + } + return parser.parsed; + }; + + AbstractChosen = (function() { + function AbstractChosen(form_field, options1) { + this.form_field = form_field; + this.options = options1 != null ? options1 : {}; + this.label_click_handler = bind(this.label_click_handler, this); + if (!AbstractChosen.browser_is_supported()) { + return; + } + this.is_multiple = this.form_field.multiple; + this.set_default_text(); + this.set_default_values(); + this.setup(); + this.set_up_html(); + this.register_observers(); + this.on_ready(); + } + + AbstractChosen.prototype.set_default_values = function() { + this.click_test_action = (function(_this) { + return function(evt) { + return _this.test_active_click(evt); + }; + })(this); + this.activate_action = (function(_this) { + return function(evt) { + return _this.activate_field(evt); + }; + })(this); + this.active_field = false; + this.mouse_on_container = false; + this.results_showing = false; + this.result_highlighted = null; + this.is_rtl = this.options.rtl || /\bchosen-rtl\b/.test(this.form_field.className); + this.allow_single_deselect = (this.options.allow_single_deselect != null) && (this.form_field.options[0] != null) && this.form_field.options[0].text === "" ? this.options.allow_single_deselect : false; + this.disable_search_threshold = this.options.disable_search_threshold || 0; + this.disable_search = this.options.disable_search || false; + this.enable_split_word_search = this.options.enable_split_word_search != null ? this.options.enable_split_word_search : true; + this.group_search = this.options.group_search != null ? this.options.group_search : true; + this.search_contains = this.options.search_contains || false; + this.single_backstroke_delete = this.options.single_backstroke_delete != null ? this.options.single_backstroke_delete : true; + this.max_selected_options = this.options.max_selected_options || Infinity; + this.inherit_select_classes = this.options.inherit_select_classes || false; + this.display_selected_options = this.options.display_selected_options != null ? this.options.display_selected_options : true; + this.display_disabled_options = this.options.display_disabled_options != null ? this.options.display_disabled_options : true; + this.include_group_label_in_selected = this.options.include_group_label_in_selected || false; + this.max_shown_results = this.options.max_shown_results || Number.POSITIVE_INFINITY; + this.case_sensitive_search = this.options.case_sensitive_search || false; + return this.hide_results_on_select = this.options.hide_results_on_select != null ? this.options.hide_results_on_select : true; + }; + + AbstractChosen.prototype.set_default_text = function() { + if (this.form_field.getAttribute("data-placeholder")) { + this.default_text = this.form_field.getAttribute("data-placeholder"); + } else if (this.is_multiple) { + this.default_text = this.options.placeholder_text_multiple || this.options.placeholder_text || AbstractChosen.default_multiple_text; + } else { + this.default_text = this.options.placeholder_text_single || this.options.placeholder_text || AbstractChosen.default_single_text; + } + this.default_text = this.escape_html(this.default_text); + return this.results_none_found = this.form_field.getAttribute("data-no_results_text") || this.options.no_results_text || AbstractChosen.default_no_result_text; + }; + + AbstractChosen.prototype.choice_label = function(item) { + if (this.include_group_label_in_selected && (item.group_label != null)) { + return "" + item.group_label + "" + item.html; + } else { + return item.html; + } + }; + + AbstractChosen.prototype.mouse_enter = function() { + return this.mouse_on_container = true; + }; + + AbstractChosen.prototype.mouse_leave = function() { + return this.mouse_on_container = false; + }; + + AbstractChosen.prototype.input_focus = function(evt) { + if (this.is_multiple) { + if (!this.active_field) { + return setTimeout(((function(_this) { + return function() { + return _this.container_mousedown(); + }; + })(this)), 50); + } + } else { + if (!this.active_field) { + return this.activate_field(); + } + } + }; + + AbstractChosen.prototype.input_blur = function(evt) { + if (!this.mouse_on_container) { + this.active_field = false; + return setTimeout(((function(_this) { + return function() { + return _this.blur_test(); + }; + })(this)), 100); + } + }; + + AbstractChosen.prototype.label_click_handler = function(evt) { + if (this.is_multiple) { + return this.container_mousedown(evt); + } else { + return this.activate_field(); + } + }; + + AbstractChosen.prototype.results_option_build = function(options) { + var content, data, data_content, i, len, ref, shown_results; + content = ''; + shown_results = 0; + ref = this.results_data; + for (i = 0, len = ref.length; i < len; i++) { + data = ref[i]; + data_content = ''; + if (data.group) { + data_content = this.result_add_group(data); + } else { + data_content = this.result_add_option(data); + } + if (data_content !== '') { + shown_results++; + content += data_content; + } + if (options != null ? options.first : void 0) { + if (data.selected && this.is_multiple) { + this.choice_build(data); + } else if (data.selected && !this.is_multiple) { + this.single_set_selected_text(this.choice_label(data)); + } + } + if (shown_results >= this.max_shown_results) { + break; + } + } + return content; + }; + + AbstractChosen.prototype.result_add_option = function(option) { + var classes, option_el; + if (!option.search_match) { + return ''; + } + if (!this.include_option_in_results(option)) { + return ''; + } + classes = []; + if (!option.disabled && !(option.selected && this.is_multiple)) { + classes.push("active-result"); + } + if (option.disabled && !(option.selected && this.is_multiple)) { + classes.push("disabled-result"); + } + if (option.selected) { + classes.push("result-selected"); + } + if (option.group_array_index != null) { + classes.push("group-option"); + } + if (option.classes !== "") { + classes.push(option.classes); + } + option_el = document.createElement("li"); + option_el.className = classes.join(" "); + option_el.style.cssText = option.style; + option_el.setAttribute("data-option-array-index", option.array_index); + option_el.innerHTML = option.highlighted_html || option.html; + if (option.title) { + option_el.title = option.title; + } + return this.outerHTML(option_el); + }; + + AbstractChosen.prototype.result_add_group = function(group) { + var classes, group_el; + if (!(group.search_match || group.group_match)) { + return ''; + } + if (!(group.active_options > 0)) { + return ''; + } + classes = []; + classes.push("group-result"); + if (group.classes) { + classes.push(group.classes); + } + group_el = document.createElement("li"); + group_el.className = classes.join(" "); + group_el.innerHTML = group.highlighted_html || this.escape_html(group.label); + if (group.title) { + group_el.title = group.title; + } + return this.outerHTML(group_el); + }; + + AbstractChosen.prototype.results_update_field = function() { + this.set_default_text(); + if (!this.is_multiple) { + this.results_reset_cleanup(); + } + this.result_clear_highlight(); + this.results_build(); + if (this.results_showing) { + return this.winnow_results(); + } + }; + + AbstractChosen.prototype.reset_single_select_options = function() { + var i, len, ref, result, results1; + ref = this.results_data; + results1 = []; + for (i = 0, len = ref.length; i < len; i++) { + result = ref[i]; + if (result.selected) { + results1.push(result.selected = false); + } else { + results1.push(void 0); + } + } + return results1; + }; + + AbstractChosen.prototype.results_toggle = function() { + if (this.results_showing) { + return this.results_hide(); + } else { + return this.results_show(); + } + }; + + AbstractChosen.prototype.results_search = function(evt) { + if (this.results_showing) { + return this.winnow_results(); + } else { + return this.results_show(); + } + }; + + AbstractChosen.prototype.winnow_results = function() { + var escapedQuery, fix, i, len, option, prefix, query, ref, regex, results, results_group, search_match, startpos, suffix, text; + this.no_results_clear(); + results = 0; + query = this.get_search_text(); + escapedQuery = query.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&"); + regex = this.get_search_regex(escapedQuery); + ref = this.results_data; + for (i = 0, len = ref.length; i < len; i++) { + option = ref[i]; + option.search_match = false; + results_group = null; + search_match = null; + option.highlighted_html = ''; + if (this.include_option_in_results(option)) { + if (option.group) { + option.group_match = false; + option.active_options = 0; + } + if ((option.group_array_index != null) && this.results_data[option.group_array_index]) { + results_group = this.results_data[option.group_array_index]; + if (results_group.active_options === 0 && results_group.search_match) { + results += 1; + } + results_group.active_options += 1; + } + text = option.group ? option.label : option.text; + if (!(option.group && !this.group_search)) { + search_match = this.search_string_match(text, regex); + option.search_match = search_match != null; + if (option.search_match && !option.group) { + results += 1; + } + if (option.search_match) { + if (query.length) { + startpos = search_match.index; + prefix = text.slice(0, startpos); + fix = text.slice(startpos, startpos + query.length); + suffix = text.slice(startpos + query.length); + option.highlighted_html = (this.escape_html(prefix)) + "" + (this.escape_html(fix)) + "" + (this.escape_html(suffix)); + } + if (results_group != null) { + results_group.group_match = true; + } + } else if ((option.group_array_index != null) && this.results_data[option.group_array_index].search_match) { + option.search_match = true; + } + } + } + } + this.result_clear_highlight(); + if (results < 1 && query.length) { + this.update_results_content(""); + return this.no_results(query); + } else { + this.update_results_content(this.results_option_build()); + return this.winnow_results_set_highlight(); + } + }; + + AbstractChosen.prototype.get_search_regex = function(escaped_search_string) { + var regex_flag, regex_string; + regex_string = this.search_contains ? escaped_search_string : "(^|\\s|\\b)" + escaped_search_string + "[^\\s]*"; + if (!(this.enable_split_word_search || this.search_contains)) { + regex_string = "^" + regex_string; + } + regex_flag = this.case_sensitive_search ? "" : "i"; + return new RegExp(regex_string, regex_flag); + }; + + AbstractChosen.prototype.search_string_match = function(search_string, regex) { + var match; + match = regex.exec(search_string); + if (!this.search_contains && (match != null ? match[1] : void 0)) { + match.index += 1; + } + return match; + }; + + AbstractChosen.prototype.choices_count = function() { + var i, len, option, ref; + if (this.selected_option_count != null) { + return this.selected_option_count; + } + this.selected_option_count = 0; + ref = this.form_field.options; + for (i = 0, len = ref.length; i < len; i++) { + option = ref[i]; + if (option.selected) { + this.selected_option_count += 1; + } + } + return this.selected_option_count; + }; + + AbstractChosen.prototype.choices_click = function(evt) { + evt.preventDefault(); + this.activate_field(); + if (!(this.results_showing || this.is_disabled)) { + return this.results_show(); + } + }; + + AbstractChosen.prototype.keydown_checker = function(evt) { + var ref, stroke; + stroke = (ref = evt.which) != null ? ref : evt.keyCode; + this.search_field_scale(); + if (stroke !== 8 && this.pending_backstroke) { + this.clear_backstroke(); + } + switch (stroke) { + case 8: + this.backstroke_length = this.get_search_field_value().length; + break; + case 9: + if (this.results_showing && !this.is_multiple) { + this.result_select(evt); + } + this.mouse_on_container = false; + break; + case 13: + if (this.results_showing) { + evt.preventDefault(); + } + break; + case 27: + if (this.results_showing) { + evt.preventDefault(); + } + break; + case 32: + if (this.disable_search) { + evt.preventDefault(); + } + break; + case 38: + evt.preventDefault(); + this.keyup_arrow(); + break; + case 40: + evt.preventDefault(); + this.keydown_arrow(); + break; + } + }; + + AbstractChosen.prototype.keyup_checker = function(evt) { + var ref, stroke; + stroke = (ref = evt.which) != null ? ref : evt.keyCode; + this.search_field_scale(); + switch (stroke) { + case 8: + if (this.is_multiple && this.backstroke_length < 1 && this.choices_count() > 0) { + this.keydown_backstroke(); + } else if (!this.pending_backstroke) { + this.result_clear_highlight(); + this.results_search(); + } + break; + case 13: + evt.preventDefault(); + if (this.results_showing) { + this.result_select(evt); + } + break; + case 27: + if (this.results_showing) { + this.results_hide(); + } + break; + case 9: + case 16: + case 17: + case 18: + case 38: + case 40: + case 91: + break; + default: + this.results_search(); + break; + } + }; + + AbstractChosen.prototype.clipboard_event_checker = function(evt) { + if (this.is_disabled) { + return; + } + return setTimeout(((function(_this) { + return function() { + return _this.results_search(); + }; + })(this)), 50); + }; + + AbstractChosen.prototype.container_width = function() { + if (this.options.width != null) { + return this.options.width; + } else { + return this.form_field.offsetWidth + "px"; + } + }; + + AbstractChosen.prototype.include_option_in_results = function(option) { + if (this.is_multiple && (!this.display_selected_options && option.selected)) { + return false; + } + if (!this.display_disabled_options && option.disabled) { + return false; + } + if (option.empty) { + return false; + } + return true; + }; + + AbstractChosen.prototype.search_results_touchstart = function(evt) { + this.touch_started = true; + return this.search_results_mouseover(evt); + }; + + AbstractChosen.prototype.search_results_touchmove = function(evt) { + this.touch_started = false; + return this.search_results_mouseout(evt); + }; + + AbstractChosen.prototype.search_results_touchend = function(evt) { + if (this.touch_started) { + return this.search_results_mouseup(evt); + } + }; + + AbstractChosen.prototype.outerHTML = function(element) { + var tmp; + if (element.outerHTML) { + return element.outerHTML; + } + tmp = document.createElement("div"); + tmp.appendChild(element); + return tmp.innerHTML; + }; + + AbstractChosen.prototype.get_single_html = function() { + return "\n " + this.default_text + "\n
          \n
          \n
          \n
          \n \n
          \n
            \n
            "; + }; + + AbstractChosen.prototype.get_multi_html = function() { + return "
              \n
            • \n \n
            • \n
            \n
            \n
              \n
              "; + }; + + AbstractChosen.prototype.get_no_results_html = function(terms) { + return "
            • \n " + this.results_none_found + " " + (this.escape_html(terms)) + "\n
            • "; + }; + + AbstractChosen.browser_is_supported = function() { + if ("Microsoft Internet Explorer" === window.navigator.appName) { + return document.documentMode >= 8; + } + if (/iP(od|hone)/i.test(window.navigator.userAgent) || /IEMobile/i.test(window.navigator.userAgent) || /Windows Phone/i.test(window.navigator.userAgent) || /BlackBerry/i.test(window.navigator.userAgent) || /BB10/i.test(window.navigator.userAgent) || /Android.*Mobile/i.test(window.navigator.userAgent)) { + return false; + } + return true; + }; + + AbstractChosen.default_multiple_text = "Select Some Options"; + + AbstractChosen.default_single_text = "Select an Option"; + + AbstractChosen.default_no_result_text = "No results match"; + + return AbstractChosen; + + })(); + + this.Chosen = (function(superClass) { + var triggerHtmlEvent; + + extend(Chosen, superClass); + + function Chosen() { + return Chosen.__super__.constructor.apply(this, arguments); + } + + Chosen.prototype.setup = function() { + return this.current_selectedIndex = this.form_field.selectedIndex; + }; + + Chosen.prototype.set_up_html = function() { + var container_classes, container_props; + container_classes = ["chosen-container"]; + container_classes.push("chosen-container-" + (this.is_multiple ? "multi" : "single")); + if (this.inherit_select_classes && this.form_field.className) { + container_classes.push(this.form_field.className); + } + if (this.is_rtl) { + container_classes.push("chosen-rtl"); + } + container_props = { + 'class': container_classes.join(' '), + 'title': this.form_field.title + }; + if (this.form_field.id.length) { + container_props.id = this.form_field.id.replace(/[^\w]/g, '_') + "_chosen"; + } + this.container = new Element('div', container_props); + this.container.setStyle({ + width: this.container_width() + }); + if (this.is_multiple) { + this.container.update(this.get_multi_html()); + } else { + this.container.update(this.get_single_html()); + } + this.form_field.hide().insert({ + after: this.container + }); + this.dropdown = this.container.down('div.chosen-drop'); + this.search_field = this.container.down('input'); + this.search_results = this.container.down('ul.chosen-results'); + this.search_field_scale(); + this.search_no_results = this.container.down('li.no-results'); + if (this.is_multiple) { + this.search_choices = this.container.down('ul.chosen-choices'); + this.search_container = this.container.down('li.search-field'); + } else { + this.search_container = this.container.down('div.chosen-search'); + this.selected_item = this.container.down('.chosen-single'); + } + this.results_build(); + this.set_tab_index(); + return this.set_label_behavior(); + }; + + Chosen.prototype.on_ready = function() { + return this.form_field.fire("chosen:ready", { + chosen: this + }); + }; + + Chosen.prototype.register_observers = function() { + this.container.observe("touchstart", (function(_this) { + return function(evt) { + return _this.container_mousedown(evt); + }; + })(this)); + this.container.observe("touchend", (function(_this) { + return function(evt) { + return _this.container_mouseup(evt); + }; + })(this)); + this.container.observe("mousedown", (function(_this) { + return function(evt) { + return _this.container_mousedown(evt); + }; + })(this)); + this.container.observe("mouseup", (function(_this) { + return function(evt) { + return _this.container_mouseup(evt); + }; + })(this)); + this.container.observe("mouseenter", (function(_this) { + return function(evt) { + return _this.mouse_enter(evt); + }; + })(this)); + this.container.observe("mouseleave", (function(_this) { + return function(evt) { + return _this.mouse_leave(evt); + }; + })(this)); + this.search_results.observe("mouseup", (function(_this) { + return function(evt) { + return _this.search_results_mouseup(evt); + }; + })(this)); + this.search_results.observe("mouseover", (function(_this) { + return function(evt) { + return _this.search_results_mouseover(evt); + }; + })(this)); + this.search_results.observe("mouseout", (function(_this) { + return function(evt) { + return _this.search_results_mouseout(evt); + }; + })(this)); + this.search_results.observe("mousewheel", (function(_this) { + return function(evt) { + return _this.search_results_mousewheel(evt); + }; + })(this)); + this.search_results.observe("DOMMouseScroll", (function(_this) { + return function(evt) { + return _this.search_results_mousewheel(evt); + }; + })(this)); + this.search_results.observe("touchstart", (function(_this) { + return function(evt) { + return _this.search_results_touchstart(evt); + }; + })(this)); + this.search_results.observe("touchmove", (function(_this) { + return function(evt) { + return _this.search_results_touchmove(evt); + }; + })(this)); + this.search_results.observe("touchend", (function(_this) { + return function(evt) { + return _this.search_results_touchend(evt); + }; + })(this)); + this.form_field.observe("chosen:updated", (function(_this) { + return function(evt) { + return _this.results_update_field(evt); + }; + })(this)); + this.form_field.observe("chosen:activate", (function(_this) { + return function(evt) { + return _this.activate_field(evt); + }; + })(this)); + this.form_field.observe("chosen:open", (function(_this) { + return function(evt) { + return _this.container_mousedown(evt); + }; + })(this)); + this.form_field.observe("chosen:close", (function(_this) { + return function(evt) { + return _this.close_field(evt); + }; + })(this)); + this.search_field.observe("blur", (function(_this) { + return function(evt) { + return _this.input_blur(evt); + }; + })(this)); + this.search_field.observe("keyup", (function(_this) { + return function(evt) { + return _this.keyup_checker(evt); + }; + })(this)); + this.search_field.observe("keydown", (function(_this) { + return function(evt) { + return _this.keydown_checker(evt); + }; + })(this)); + this.search_field.observe("focus", (function(_this) { + return function(evt) { + return _this.input_focus(evt); + }; + })(this)); + this.search_field.observe("cut", (function(_this) { + return function(evt) { + return _this.clipboard_event_checker(evt); + }; + })(this)); + this.search_field.observe("paste", (function(_this) { + return function(evt) { + return _this.clipboard_event_checker(evt); + }; + })(this)); + if (this.is_multiple) { + return this.search_choices.observe("click", (function(_this) { + return function(evt) { + return _this.choices_click(evt); + }; + })(this)); + } else { + return this.container.observe("click", (function(_this) { + return function(evt) { + return evt.preventDefault(); + }; + })(this)); + } + }; + + Chosen.prototype.destroy = function() { + var event, i, len, ref; + this.container.ownerDocument.stopObserving("click", this.click_test_action); + ref = ['chosen:updated', 'chosen:activate', 'chosen:open', 'chosen:close']; + for (i = 0, len = ref.length; i < len; i++) { + event = ref[i]; + this.form_field.stopObserving(event); + } + this.container.stopObserving(); + this.search_results.stopObserving(); + this.search_field.stopObserving(); + if (this.form_field_label != null) { + this.form_field_label.stopObserving(); + } + if (this.is_multiple) { + this.search_choices.stopObserving(); + this.container.select(".search-choice-close").each(function(choice) { + return choice.stopObserving(); + }); + } else { + this.selected_item.stopObserving(); + } + if (this.search_field.tabIndex) { + this.form_field.tabIndex = this.search_field.tabIndex; + } + this.container.remove(); + return this.form_field.show(); + }; + + Chosen.prototype.search_field_disabled = function() { + var ref; + this.is_disabled = this.form_field.disabled || ((ref = this.form_field.up('fieldset')) != null ? ref.disabled : void 0) || false; + if (this.is_disabled) { + this.container.addClassName('chosen-disabled'); + } else { + this.container.removeClassName('chosen-disabled'); + } + this.search_field.disabled = this.is_disabled; + if (!this.is_multiple) { + this.selected_item.stopObserving('focus', this.activate_field); + } + if (this.is_disabled) { + return this.close_field(); + } else if (!this.is_multiple) { + return this.selected_item.observe('focus', this.activate_field); + } + }; + + Chosen.prototype.container_mousedown = function(evt) { + var ref; + if (this.is_disabled) { + return; + } + if (evt && ((ref = evt.type) === 'mousedown' || ref === 'touchstart') && !this.results_showing) { + evt.preventDefault(); + } + if (!((evt != null) && evt.target.hasClassName("search-choice-close"))) { + if (!this.active_field) { + if (this.is_multiple) { + this.search_field.clear(); + } + this.container.ownerDocument.observe("click", this.click_test_action); + this.results_show(); + } else if (!this.is_multiple && evt && (evt.target === this.selected_item || evt.target.up("a.chosen-single"))) { + this.results_toggle(); + } + return this.activate_field(); + } + }; + + Chosen.prototype.container_mouseup = function(evt) { + if (evt.target.nodeName === "ABBR" && !this.is_disabled) { + return this.results_reset(evt); + } + }; + + Chosen.prototype.search_results_mousewheel = function(evt) { + var delta; + delta = evt.deltaY || -evt.wheelDelta || evt.detail; + if (delta != null) { + evt.preventDefault(); + if (evt.type === 'DOMMouseScroll') { + delta = delta * 40; + } + return this.search_results.scrollTop = delta + this.search_results.scrollTop; + } + }; + + Chosen.prototype.blur_test = function(evt) { + if (!this.active_field && this.container.hasClassName("chosen-container-active")) { + return this.close_field(); + } + }; + + Chosen.prototype.close_field = function() { + this.container.ownerDocument.stopObserving("click", this.click_test_action); + this.active_field = false; + this.results_hide(); + this.container.removeClassName("chosen-container-active"); + this.clear_backstroke(); + this.show_search_field_default(); + this.search_field_scale(); + return this.search_field.blur(); + }; + + Chosen.prototype.activate_field = function() { + if (this.is_disabled) { + return; + } + this.container.addClassName("chosen-container-active"); + this.active_field = true; + this.search_field.value = this.get_search_field_value(); + return this.search_field.focus(); + }; + + Chosen.prototype.test_active_click = function(evt) { + if (evt.target.up('.chosen-container') === this.container) { + return this.active_field = true; + } else { + return this.close_field(); + } + }; + + Chosen.prototype.results_build = function() { + this.parsing = true; + this.selected_option_count = null; + this.results_data = SelectParser.select_to_array(this.form_field); + if (this.is_multiple) { + this.search_choices.select("li.search-choice").invoke("remove"); + } else if (!this.is_multiple) { + this.single_set_selected_text(); + if (this.disable_search || this.form_field.options.length <= this.disable_search_threshold) { + this.search_field.readOnly = true; + this.container.addClassName("chosen-container-single-nosearch"); + } else { + this.search_field.readOnly = false; + this.container.removeClassName("chosen-container-single-nosearch"); + } + } + this.update_results_content(this.results_option_build({ + first: true + })); + this.search_field_disabled(); + this.show_search_field_default(); + this.search_field_scale(); + return this.parsing = false; + }; + + Chosen.prototype.result_do_highlight = function(el) { + var high_bottom, high_top, maxHeight, visible_bottom, visible_top; + this.result_clear_highlight(); + this.result_highlight = el; + this.result_highlight.addClassName("highlighted"); + maxHeight = parseInt(this.search_results.getStyle('maxHeight'), 10); + visible_top = this.search_results.scrollTop; + visible_bottom = maxHeight + visible_top; + high_top = this.result_highlight.positionedOffset().top; + high_bottom = high_top + this.result_highlight.getHeight(); + if (high_bottom >= visible_bottom) { + return this.search_results.scrollTop = (high_bottom - maxHeight) > 0 ? high_bottom - maxHeight : 0; + } else if (high_top < visible_top) { + return this.search_results.scrollTop = high_top; + } + }; + + Chosen.prototype.result_clear_highlight = function() { + if (this.result_highlight) { + this.result_highlight.removeClassName('highlighted'); + } + return this.result_highlight = null; + }; + + Chosen.prototype.results_show = function() { + if (this.is_multiple && this.max_selected_options <= this.choices_count()) { + this.form_field.fire("chosen:maxselected", { + chosen: this + }); + return false; + } + this.container.addClassName("chosen-with-drop"); + this.results_showing = true; + this.search_field.focus(); + this.search_field.value = this.get_search_field_value(); + this.winnow_results(); + return this.form_field.fire("chosen:showing_dropdown", { + chosen: this + }); + }; + + Chosen.prototype.update_results_content = function(content) { + return this.search_results.update(content); + }; + + Chosen.prototype.results_hide = function() { + if (this.results_showing) { + this.result_clear_highlight(); + this.container.removeClassName("chosen-with-drop"); + this.form_field.fire("chosen:hiding_dropdown", { + chosen: this + }); + } + return this.results_showing = false; + }; + + Chosen.prototype.set_tab_index = function(el) { + var ti; + if (this.form_field.tabIndex) { + ti = this.form_field.tabIndex; + this.form_field.tabIndex = -1; + return this.search_field.tabIndex = ti; + } + }; + + Chosen.prototype.set_label_behavior = function() { + this.form_field_label = this.form_field.up("label"); + if (this.form_field_label == null) { + this.form_field_label = $$("label[for='" + this.form_field.id + "']").first(); + } + if (this.form_field_label != null) { + return this.form_field_label.observe("click", this.label_click_handler); + } + }; + + Chosen.prototype.show_search_field_default = function() { + if (this.is_multiple && this.choices_count() < 1 && !this.active_field) { + this.search_field.value = this.default_text; + return this.search_field.addClassName("default"); + } else { + this.search_field.value = ""; + return this.search_field.removeClassName("default"); + } + }; + + Chosen.prototype.search_results_mouseup = function(evt) { + var target; + target = evt.target.hasClassName("active-result") ? evt.target : evt.target.up(".active-result"); + if (target) { + this.result_highlight = target; + this.result_select(evt); + return this.search_field.focus(); + } + }; + + Chosen.prototype.search_results_mouseover = function(evt) { + var target; + target = evt.target.hasClassName("active-result") ? evt.target : evt.target.up(".active-result"); + if (target) { + return this.result_do_highlight(target); + } + }; + + Chosen.prototype.search_results_mouseout = function(evt) { + if (evt.target.hasClassName('active-result') || evt.target.up('.active-result')) { + return this.result_clear_highlight(); + } + }; + + Chosen.prototype.choice_build = function(item) { + var choice, close_link; + choice = new Element('li', { + "class": "search-choice" + }).update("" + (this.choice_label(item)) + ""); + if (item.disabled) { + choice.addClassName('search-choice-disabled'); + } else { + close_link = new Element('a', { + href: '#', + "class": 'search-choice-close', + rel: item.array_index + }); + close_link.observe("click", (function(_this) { + return function(evt) { + return _this.choice_destroy_link_click(evt); + }; + })(this)); + choice.insert(close_link); + } + return this.search_container.insert({ + before: choice + }); + }; + + Chosen.prototype.choice_destroy_link_click = function(evt) { + evt.preventDefault(); + evt.stopPropagation(); + if (!this.is_disabled) { + return this.choice_destroy(evt.target); + } + }; + + Chosen.prototype.choice_destroy = function(link) { + if (this.result_deselect(link.readAttribute("rel"))) { + if (this.active_field) { + this.search_field.focus(); + } else { + this.show_search_field_default(); + } + if (this.is_multiple && this.choices_count() > 0 && this.get_search_field_value().length < 1) { + this.results_hide(); + } + link.up('li').remove(); + return this.search_field_scale(); + } + }; + + Chosen.prototype.results_reset = function() { + this.reset_single_select_options(); + this.form_field.options[0].selected = true; + this.single_set_selected_text(); + this.show_search_field_default(); + this.results_reset_cleanup(); + this.trigger_form_field_change(); + if (this.active_field) { + return this.results_hide(); + } + }; + + Chosen.prototype.results_reset_cleanup = function() { + var deselect_trigger; + this.current_selectedIndex = this.form_field.selectedIndex; + deselect_trigger = this.selected_item.down("abbr"); + if (deselect_trigger) { + return deselect_trigger.remove(); + } + }; + + Chosen.prototype.result_select = function(evt) { + var high, item; + if (this.result_highlight) { + high = this.result_highlight; + this.result_clear_highlight(); + if (this.is_multiple && this.max_selected_options <= this.choices_count()) { + this.form_field.fire("chosen:maxselected", { + chosen: this + }); + return false; + } + if (this.is_multiple) { + high.removeClassName("active-result"); + } else { + this.reset_single_select_options(); + } + high.addClassName("result-selected"); + item = this.results_data[high.getAttribute("data-option-array-index")]; + item.selected = true; + this.form_field.options[item.options_index].selected = true; + this.selected_option_count = null; + this.search_field.value = ""; + if (this.is_multiple) { + this.choice_build(item); + } else { + this.single_set_selected_text(this.choice_label(item)); + } + if (this.is_multiple && (!this.hide_results_on_select || (evt.metaKey || evt.ctrlKey))) { + this.winnow_results(); + } else { + this.results_hide(); + this.show_search_field_default(); + } + if (this.is_multiple || this.form_field.selectedIndex !== this.current_selectedIndex) { + this.trigger_form_field_change(); + } + this.current_selectedIndex = this.form_field.selectedIndex; + evt.preventDefault(); + return this.search_field_scale(); + } + }; + + Chosen.prototype.single_set_selected_text = function(text) { + if (text == null) { + text = this.default_text; + } + if (text === this.default_text) { + this.selected_item.addClassName("chosen-default"); + } else { + this.single_deselect_control_build(); + this.selected_item.removeClassName("chosen-default"); + } + return this.selected_item.down("span").update(text); + }; + + Chosen.prototype.result_deselect = function(pos) { + var result_data; + result_data = this.results_data[pos]; + if (!this.form_field.options[result_data.options_index].disabled) { + result_data.selected = false; + this.form_field.options[result_data.options_index].selected = false; + this.selected_option_count = null; + this.result_clear_highlight(); + if (this.results_showing) { + this.winnow_results(); + } + this.trigger_form_field_change(); + this.search_field_scale(); + return true; + } else { + return false; + } + }; + + Chosen.prototype.single_deselect_control_build = function() { + if (!this.allow_single_deselect) { + return; + } + if (!this.selected_item.down("abbr")) { + this.selected_item.down("span").insert({ + after: "" + }); + } + return this.selected_item.addClassName("chosen-single-with-deselect"); + }; + + Chosen.prototype.get_search_field_value = function() { + return this.search_field.value; + }; + + Chosen.prototype.get_search_text = function() { + return this.get_search_field_value().strip(); + }; + + Chosen.prototype.escape_html = function(text) { + return text.escapeHTML(); + }; + + Chosen.prototype.winnow_results_set_highlight = function() { + var do_high; + if (!this.is_multiple) { + do_high = this.search_results.down(".result-selected.active-result"); + } + if (do_high == null) { + do_high = this.search_results.down(".active-result"); + } + if (do_high != null) { + return this.result_do_highlight(do_high); + } + }; + + Chosen.prototype.no_results = function(terms) { + this.search_results.insert(this.get_no_results_html(terms)); + return this.form_field.fire("chosen:no_results", { + chosen: this + }); + }; + + Chosen.prototype.no_results_clear = function() { + var nr, results1; + nr = null; + results1 = []; + while (nr = this.search_results.down(".no-results")) { + results1.push(nr.remove()); + } + return results1; + }; + + Chosen.prototype.keydown_arrow = function() { + var next_sib; + if (this.results_showing && this.result_highlight) { + next_sib = this.result_highlight.next('.active-result'); + if (next_sib) { + return this.result_do_highlight(next_sib); + } + } else { + return this.results_show(); + } + }; + + Chosen.prototype.keyup_arrow = function() { + var actives, prevs, sibs; + if (!this.results_showing && !this.is_multiple) { + return this.results_show(); + } else if (this.result_highlight) { + sibs = this.result_highlight.previousSiblings(); + actives = this.search_results.select("li.active-result"); + prevs = sibs.intersect(actives); + if (prevs.length) { + return this.result_do_highlight(prevs.first()); + } else { + if (this.choices_count() > 0) { + this.results_hide(); + } + return this.result_clear_highlight(); + } + } + }; + + Chosen.prototype.keydown_backstroke = function() { + var next_available_destroy; + if (this.pending_backstroke) { + this.choice_destroy(this.pending_backstroke.down("a")); + return this.clear_backstroke(); + } else { + next_available_destroy = this.search_container.siblings().last(); + if (next_available_destroy && next_available_destroy.hasClassName("search-choice") && !next_available_destroy.hasClassName("search-choice-disabled")) { + this.pending_backstroke = next_available_destroy; + if (this.pending_backstroke) { + this.pending_backstroke.addClassName("search-choice-focus"); + } + if (this.single_backstroke_delete) { + return this.keydown_backstroke(); + } else { + return this.pending_backstroke.addClassName("search-choice-focus"); + } + } + } + }; + + Chosen.prototype.clear_backstroke = function() { + if (this.pending_backstroke) { + this.pending_backstroke.removeClassName("search-choice-focus"); + } + return this.pending_backstroke = null; + }; + + Chosen.prototype.search_field_scale = function() { + var container_width, div, i, len, style, style_block, styles, width; + if (!this.is_multiple) { + return; + } + style_block = { + position: 'absolute', + left: '-1000px', + top: '-1000px', + display: 'none', + whiteSpace: 'pre' + }; + styles = ['fontSize', 'fontStyle', 'fontWeight', 'fontFamily', 'lineHeight', 'textTransform', 'letterSpacing']; + for (i = 0, len = styles.length; i < len; i++) { + style = styles[i]; + style_block[style] = this.search_field.getStyle(style); + } + div = new Element('div').update(this.escape_html(this.get_search_field_value())); + div.setStyle(style_block); + document.body.appendChild(div); + width = div.measure('width') + 25; + div.remove(); + if (container_width = this.container.getWidth()) { + width = Math.min(container_width - 10, width); + } + return this.search_field.setStyle({ + width: width + 'px' + }); + }; + + Chosen.prototype.trigger_form_field_change = function() { + triggerHtmlEvent(this.form_field, 'input'); + return triggerHtmlEvent(this.form_field, 'change'); + }; + + triggerHtmlEvent = function(element, eventType) { + var error, evt; + if (element.dispatchEvent) { + try { + evt = new Event(eventType, { + bubbles: true, + cancelable: true + }); + } catch (error) { + evt = document.createEvent('HTMLEvents'); + evt.initEvent(eventType, true, true); + } + return element.dispatchEvent(evt); + } else { + return element.fireEvent("on" + eventType, document.createEventObject()); + } + }; + + return Chosen; + + })(AbstractChosen); + +}).call(this); diff --git a/public/asset/js/lib/chosen/chosen.proto.min.js b/public/asset/js/lib/chosen/chosen.proto.min.js new file mode 100644 index 0000000..f299bc2 --- /dev/null +++ b/public/asset/js/lib/chosen/chosen.proto.min.js @@ -0,0 +1,3 @@ +/* Chosen v1.8.2 | (c) 2011-2017 by Harvest | MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md */ + +(function(){var e,t,s=function(e,t){return function(){return e.apply(t,arguments)}},i=function(e,t){function s(){this.constructor=e}for(var i in t)r.call(t,i)&&(e[i]=t[i]);return s.prototype=t.prototype,e.prototype=new s,e.__super__=t.prototype,e},r={}.hasOwnProperty;(t=function(){function e(){this.options_index=0,this.parsed=[]}return e.prototype.add_node=function(e){return"OPTGROUP"===e.nodeName.toUpperCase()?this.add_group(e):this.add_option(e)},e.prototype.add_group=function(e){var t,s,i,r,n,o;for(t=this.parsed.length,this.parsed.push({array_index:t,group:!0,label:e.label,title:e.title?e.title:void 0,children:0,disabled:e.disabled,classes:e.className}),o=[],s=0,i=(n=e.childNodes).length;s"+e.group_label+""+e.html:e.html},e.prototype.mouse_enter=function(){return this.mouse_on_container=!0},e.prototype.mouse_leave=function(){return this.mouse_on_container=!1},e.prototype.input_focus=function(e){if(this.is_multiple){if(!this.active_field)return setTimeout(function(e){return function(){return e.container_mousedown()}}(this),50)}else if(!this.active_field)return this.activate_field()},e.prototype.input_blur=function(e){if(!this.mouse_on_container)return this.active_field=!1,setTimeout(function(e){return function(){return e.blur_test()}}(this),100)},e.prototype.label_click_handler=function(e){return this.is_multiple?this.container_mousedown(e):this.activate_field()},e.prototype.results_option_build=function(e){var t,s,i,r,n,o,l;for(t="",l=0,r=0,n=(o=this.results_data).length;r=this.max_shown_results));r++);return t},e.prototype.result_add_option=function(e){var t,s;return e.search_match&&this.include_option_in_results(e)?(t=[],e.disabled||e.selected&&this.is_multiple||t.push("active-result"),!e.disabled||e.selected&&this.is_multiple||t.push("disabled-result"),e.selected&&t.push("result-selected"),null!=e.group_array_index&&t.push("group-option"),""!==e.classes&&t.push(e.classes),s=document.createElement("li"),s.className=t.join(" "),s.style.cssText=e.style,s.setAttribute("data-option-array-index",e.array_index),s.innerHTML=e.highlighted_html||e.html,e.title&&(s.title=e.title),this.outerHTML(s)):""},e.prototype.result_add_group=function(e){var t,s;return(e.search_match||e.group_match)&&e.active_options>0?((t=[]).push("group-result"),e.classes&&t.push(e.classes),s=document.createElement("li"),s.className=t.join(" "),s.innerHTML=e.highlighted_html||this.escape_html(e.label),e.title&&(s.title=e.title),this.outerHTML(s)):""},e.prototype.results_update_field=function(){if(this.set_default_text(),this.is_multiple||this.results_reset_cleanup(),this.result_clear_highlight(),this.results_build(),this.results_showing)return this.winnow_results()},e.prototype.reset_single_select_options=function(){var e,t,s,i,r;for(r=[],e=0,t=(s=this.results_data).length;e"+this.escape_html(t)+""+this.escape_html(d)),null!=a&&(a.group_match=!0)):null!=r.group_array_index&&this.results_data[r.group_array_index].search_match&&(r.search_match=!0)));return this.result_clear_highlight(),c<1&&o.length?(this.update_results_content(""),this.no_results(o)):(this.update_results_content(this.results_option_build()),this.winnow_results_set_highlight())},e.prototype.get_search_regex=function(e){var t,s;return s=this.search_contains?e:"(^|\\s|\\b)"+e+"[^\\s]*",this.enable_split_word_search||this.search_contains||(s="^"+s),t=this.case_sensitive_search?"":"i",new RegExp(s,t)},e.prototype.search_string_match=function(e,t){var s;return s=t.exec(e),!this.search_contains&&(null!=s?s[1]:void 0)&&(s.index+=1),s},e.prototype.choices_count=function(){var e,t,s;if(null!=this.selected_option_count)return this.selected_option_count;for(this.selected_option_count=0,e=0,t=(s=this.form_field.options).length;e0?this.keydown_backstroke():this.pending_backstroke||(this.result_clear_highlight(),this.results_search());break;case 13:e.preventDefault(),this.results_showing&&this.result_select(e);break;case 27:this.results_showing&&this.results_hide();break;case 9:case 16:case 17:case 18:case 38:case 40:case 91:break;default:this.results_search()}},e.prototype.clipboard_event_checker=function(e){if(!this.is_disabled)return setTimeout(function(e){return function(){return e.results_search()}}(this),50)},e.prototype.container_width=function(){return null!=this.options.width?this.options.width:this.form_field.offsetWidth+"px"},e.prototype.include_option_in_results=function(e){return!(this.is_multiple&&!this.display_selected_options&&e.selected)&&(!(!this.display_disabled_options&&e.disabled)&&!e.empty)},e.prototype.search_results_touchstart=function(e){return this.touch_started=!0,this.search_results_mouseover(e)},e.prototype.search_results_touchmove=function(e){return this.touch_started=!1,this.search_results_mouseout(e)},e.prototype.search_results_touchend=function(e){if(this.touch_started)return this.search_results_mouseup(e)},e.prototype.outerHTML=function(e){var t;return e.outerHTML?e.outerHTML:((t=document.createElement("div")).appendChild(e),t.innerHTML)},e.prototype.get_single_html=function(){return'\n '+this.default_text+'\n
              \n
              \n
              \n \n
                \n
                '},e.prototype.get_multi_html=function(){return'
                  \n
                • \n \n
                • \n
                \n
                \n
                  \n
                  '},e.prototype.get_no_results_html=function(e){return'
                • \n '+this.results_none_found+" "+this.escape_html(e)+"\n
                • "},e.browser_is_supported=function(){return"Microsoft Internet Explorer"===window.navigator.appName?document.documentMode>=8:!(/iP(od|hone)/i.test(window.navigator.userAgent)||/IEMobile/i.test(window.navigator.userAgent)||/Windows Phone/i.test(window.navigator.userAgent)||/BlackBerry/i.test(window.navigator.userAgent)||/BB10/i.test(window.navigator.userAgent)||/Android.*Mobile/i.test(window.navigator.userAgent))},e.default_multiple_text="Select Some Options",e.default_single_text="Select an Option",e.default_no_result_text="No results match",e}(),this.Chosen=function(s){function r(){return r.__super__.constructor.apply(this,arguments)}var n;return i(r,e),r.prototype.setup=function(){return this.current_selectedIndex=this.form_field.selectedIndex},r.prototype.set_up_html=function(){var e,t;return(e=["chosen-container"]).push("chosen-container-"+(this.is_multiple?"multi":"single")),this.inherit_select_classes&&this.form_field.className&&e.push(this.form_field.className),this.is_rtl&&e.push("chosen-rtl"),t={class:e.join(" "),title:this.form_field.title},this.form_field.id.length&&(t.id=this.form_field.id.replace(/[^\w]/g,"_")+"_chosen"),this.container=new Element("div",t),this.container.setStyle({width:this.container_width()}),this.is_multiple?this.container.update(this.get_multi_html()):this.container.update(this.get_single_html()),this.form_field.hide().insert({after:this.container}),this.dropdown=this.container.down("div.chosen-drop"),this.search_field=this.container.down("input"),this.search_results=this.container.down("ul.chosen-results"),this.search_field_scale(),this.search_no_results=this.container.down("li.no-results"),this.is_multiple?(this.search_choices=this.container.down("ul.chosen-choices"),this.search_container=this.container.down("li.search-field")):(this.search_container=this.container.down("div.chosen-search"),this.selected_item=this.container.down(".chosen-single")),this.results_build(),this.set_tab_index(),this.set_label_behavior()},r.prototype.on_ready=function(){return this.form_field.fire("chosen:ready",{chosen:this})},r.prototype.register_observers=function(){return this.container.observe("touchstart",function(e){return function(t){return e.container_mousedown(t)}}(this)),this.container.observe("touchend",function(e){return function(t){return e.container_mouseup(t)}}(this)),this.container.observe("mousedown",function(e){return function(t){return e.container_mousedown(t)}}(this)),this.container.observe("mouseup",function(e){return function(t){return e.container_mouseup(t)}}(this)),this.container.observe("mouseenter",function(e){return function(t){return e.mouse_enter(t)}}(this)),this.container.observe("mouseleave",function(e){return function(t){return e.mouse_leave(t)}}(this)),this.search_results.observe("mouseup",function(e){return function(t){return e.search_results_mouseup(t)}}(this)),this.search_results.observe("mouseover",function(e){return function(t){return e.search_results_mouseover(t)}}(this)),this.search_results.observe("mouseout",function(e){return function(t){return e.search_results_mouseout(t)}}(this)),this.search_results.observe("mousewheel",function(e){return function(t){return e.search_results_mousewheel(t)}}(this)),this.search_results.observe("DOMMouseScroll",function(e){return function(t){return e.search_results_mousewheel(t)}}(this)),this.search_results.observe("touchstart",function(e){return function(t){return e.search_results_touchstart(t)}}(this)),this.search_results.observe("touchmove",function(e){return function(t){return e.search_results_touchmove(t)}}(this)),this.search_results.observe("touchend",function(e){return function(t){return e.search_results_touchend(t)}}(this)),this.form_field.observe("chosen:updated",function(e){return function(t){return e.results_update_field(t)}}(this)),this.form_field.observe("chosen:activate",function(e){return function(t){return e.activate_field(t)}}(this)),this.form_field.observe("chosen:open",function(e){return function(t){return e.container_mousedown(t)}}(this)),this.form_field.observe("chosen:close",function(e){return function(t){return e.close_field(t)}}(this)),this.search_field.observe("blur",function(e){return function(t){return e.input_blur(t)}}(this)),this.search_field.observe("keyup",function(e){return function(t){return e.keyup_checker(t)}}(this)),this.search_field.observe("keydown",function(e){return function(t){return e.keydown_checker(t)}}(this)),this.search_field.observe("focus",function(e){return function(t){return e.input_focus(t)}}(this)),this.search_field.observe("cut",function(e){return function(t){return e.clipboard_event_checker(t)}}(this)),this.search_field.observe("paste",function(e){return function(t){return e.clipboard_event_checker(t)}}(this)),this.is_multiple?this.search_choices.observe("click",function(e){return function(t){return e.choices_click(t)}}(this)):this.container.observe("click",function(e){return e.preventDefault()})},r.prototype.destroy=function(){var e,t,s,i;for(this.container.ownerDocument.stopObserving("click",this.click_test_action),t=0,s=(i=["chosen:updated","chosen:activate","chosen:open","chosen:close"]).length;t=r?this.search_results.scrollTop=t-i>0?t-i:0:s"+this.choice_label(e)+""),e.disabled?t.addClassName("search-choice-disabled"):((s=new Element("a",{href:"#",class:"search-choice-close",rel:e.array_index})).observe("click",function(e){return function(t){return e.choice_destroy_link_click(t)}}(this)),t.insert(s)),this.search_container.insert({before:t})},r.prototype.choice_destroy_link_click=function(e){if(e.preventDefault(),e.stopPropagation(),!this.is_disabled)return this.choice_destroy(e.target)},r.prototype.choice_destroy=function(e){if(this.result_deselect(e.readAttribute("rel")))return this.active_field?this.search_field.focus():this.show_search_field_default(),this.is_multiple&&this.choices_count()>0&&this.get_search_field_value().length<1&&this.results_hide(),e.up("li").remove(),this.search_field_scale()},r.prototype.results_reset=function(){if(this.reset_single_select_options(),this.form_field.options[0].selected=!0,this.single_set_selected_text(),this.show_search_field_default(),this.results_reset_cleanup(),this.trigger_form_field_change(),this.active_field)return this.results_hide()},r.prototype.results_reset_cleanup=function(){var e;if(this.current_selectedIndex=this.form_field.selectedIndex,e=this.selected_item.down("abbr"))return e.remove()},r.prototype.result_select=function(e){var t,s;if(this.result_highlight)return t=this.result_highlight,this.result_clear_highlight(),this.is_multiple&&this.max_selected_options<=this.choices_count()?(this.form_field.fire("chosen:maxselected",{chosen:this}),!1):(this.is_multiple?t.removeClassName("active-result"):this.reset_single_select_options(),t.addClassName("result-selected"),s=this.results_data[t.getAttribute("data-option-array-index")],s.selected=!0,this.form_field.options[s.options_index].selected=!0,this.selected_option_count=null,this.search_field.value="",this.is_multiple?this.choice_build(s):this.single_set_selected_text(this.choice_label(s)),this.is_multiple&&(!this.hide_results_on_select||e.metaKey||e.ctrlKey)?this.winnow_results():(this.results_hide(),this.show_search_field_default()),(this.is_multiple||this.form_field.selectedIndex!==this.current_selectedIndex)&&this.trigger_form_field_change(),this.current_selectedIndex=this.form_field.selectedIndex,e.preventDefault(),this.search_field_scale())},r.prototype.single_set_selected_text=function(e){return null==e&&(e=this.default_text),e===this.default_text?this.selected_item.addClassName("chosen-default"):(this.single_deselect_control_build(),this.selected_item.removeClassName("chosen-default")),this.selected_item.down("span").update(e)},r.prototype.result_deselect=function(e){var t;return t=this.results_data[e],!this.form_field.options[t.options_index].disabled&&(t.selected=!1,this.form_field.options[t.options_index].selected=!1,this.selected_option_count=null,this.result_clear_highlight(),this.results_showing&&this.winnow_results(),this.trigger_form_field_change(),this.search_field_scale(),!0)},r.prototype.single_deselect_control_build=function(){if(this.allow_single_deselect)return this.selected_item.down("abbr")||this.selected_item.down("span").insert({after:''}),this.selected_item.addClassName("chosen-single-with-deselect")},r.prototype.get_search_field_value=function(){return this.search_field.value},r.prototype.get_search_text=function(){return this.get_search_field_value().strip()},r.prototype.escape_html=function(e){return e.escapeHTML()},r.prototype.winnow_results_set_highlight=function(){var e;if(this.is_multiple||(e=this.search_results.down(".result-selected.active-result")),null==e&&(e=this.search_results.down(".active-result")),null!=e)return this.result_do_highlight(e)},r.prototype.no_results=function(e){return this.search_results.insert(this.get_no_results_html(e)),this.form_field.fire("chosen:no_results",{chosen:this})},r.prototype.no_results_clear=function(){var e,t;for(e=null,t=[];e=this.search_results.down(".no-results");)t.push(e.remove());return t},r.prototype.keydown_arrow=function(){var e;return this.results_showing&&this.result_highlight?(e=this.result_highlight.next(".active-result"))?this.result_do_highlight(e):void 0:this.results_show()},r.prototype.keyup_arrow=function(){var e,t,s;return this.results_showing||this.is_multiple?this.result_highlight?(s=this.result_highlight.previousSiblings(),e=this.search_results.select("li.active-result"),(t=s.intersect(e)).length?this.result_do_highlight(t.first()):(this.choices_count()>0&&this.results_hide(),this.result_clear_highlight())):void 0:this.results_show()},r.prototype.keydown_backstroke=function(){var e;return this.pending_backstroke?(this.choice_destroy(this.pending_backstroke.down("a")),this.clear_backstroke()):(e=this.search_container.siblings().last())&&e.hasClassName("search-choice")&&!e.hasClassName("search-choice-disabled")?(this.pending_backstroke=e,this.pending_backstroke&&this.pending_backstroke.addClassName("search-choice-focus"),this.single_backstroke_delete?this.keydown_backstroke():this.pending_backstroke.addClassName("search-choice-focus")):void 0},r.prototype.clear_backstroke=function(){return this.pending_backstroke&&this.pending_backstroke.removeClassName("search-choice-focus"),this.pending_backstroke=null},r.prototype.search_field_scale=function(){var e,t,s,i,r,n,o,l;if(this.is_multiple){for(n={position:"absolute",left:"-1000px",top:"-1000px",display:"none",whiteSpace:"pre"},s=0,i=(o=["fontSize","fontStyle","fontWeight","fontFamily","lineHeight","textTransform","letterSpacing"]).length;s')}})(jQuery,jQuery.fn.dataTable); \ No newline at end of file diff --git a/public/asset/js/lib/data-table/buttons.colVis.min.js b/public/asset/js/lib/data-table/buttons.colVis.min.js new file mode 100644 index 0000000..16af227 --- /dev/null +++ b/public/asset/js/lib/data-table/buttons.colVis.min.js @@ -0,0 +1,5 @@ +(function(g){"function"===typeof define&&define.amd?define(["jquery","datatables.net","datatables.net-buttons"],function(d){return g(d,window,document)}):"object"===typeof exports?module.exports=function(d,e){d||(d=window);if(!e||!e.fn.dataTable)e=require("datatables.net")(d,e).$;e.fn.dataTable.Buttons||require("datatables.net-buttons")(d,e);return g(e,d,d.document)}:g(jQuery,window,document)})(function(g,d,e,h){d=g.fn.dataTable;g.extend(d.ext.buttons,{colvis:function(a,b){return{extend:"collection", +text:function(a){return a.i18n("buttons.colvis","Column visibility")},className:"buttons-colvis",buttons:[{extend:"columnsToggle",columns:b.columns}]}},columnsToggle:function(a,b){return a.columns(b.columns).indexes().map(function(a){return{extend:"columnToggle",columns:a}}).toArray()},columnToggle:function(a,b){return{extend:"columnVisibility",columns:b.columns}},columnsVisibility:function(a,b){return a.columns(b.columns).indexes().map(function(a){return{extend:"columnVisibility",columns:a,visibility:b.visibility}}).toArray()}, +columnVisibility:{columns:h,text:function(a,b,c){return c._columnText(a,c.columns)},className:"buttons-columnVisibility",action:function(a,b,c,f){a=b.columns(f.columns);b=a.visible();a.visible(f.visibility!==h?f.visibility:!(b.length&&b[0]))},init:function(a,b,c){var f=this;a.on("column-visibility.dt"+c.namespace,function(b,d){d.bDestroying||f.active(a.column(c.columns).visible())}).on("column-reorder.dt"+c.namespace,function(b,d,e){1===a.columns(c.columns).count()&&("number"===typeof c.columns&& +(c.columns=e.mapping[c.columns]),b=a.column(c.columns),f.text(c._columnText(a,c.columns)),f.active(b.visible()))});this.active(a.column(c.columns).visible())},destroy:function(a,b,c){a.off("column-visibility.dt"+c.namespace).off("column-reorder.dt"+c.namespace)},_columnText:function(a,b){var c=a.column(b).index();return a.settings()[0].aoColumns[c].sTitle.replace(/\n/g," ").replace(/<.*?>/g,"").replace(/^\s+|\s+$/g,"")}},colvisRestore:{className:"buttons-colvisRestore",text:function(a){return a.i18n("buttons.colvisRestore", +"Restore visibility")},init:function(a,b,c){c._visOriginal=a.columns().indexes().map(function(b){return a.column(b).visible()}).toArray()},action:function(a,b,c,d){b.columns().every(function(a){a=b.colReorder&&b.colReorder.transpose?b.colReorder.transpose(a,"toOriginal"):a;this.visible(d._visOriginal[a])})}},colvisGroup:{className:"buttons-colvisGroup",action:function(a,b,c,d){b.columns(d.show).visible(!0,!1);b.columns(d.hide).visible(!1,!1);b.columns.adjust()},show:[],hide:[]}});return d.Buttons}); diff --git a/public/asset/js/lib/data-table/buttons.flash.min.js b/public/asset/js/lib/data-table/buttons.flash.min.js new file mode 100644 index 0000000..fb9b8a2 --- /dev/null +++ b/public/asset/js/lib/data-table/buttons.flash.min.js @@ -0,0 +1,30 @@ +(function(g){"function"===typeof define&&define.amd?define(["jquery","datatables.net","datatables.net-buttons"],function(k){return g(k,window,document)}):"object"===typeof exports?module.exports=function(k,l){k||(k=window);if(!l||!l.fn.dataTable)l=require("datatables.net")(k,l).$;l.fn.dataTable.Buttons||require("datatables.net-buttons")(k,l);return g(l,k,k.document)}:g(jQuery,window,document)})(function(g,k,l,p){function m(a,b,d){var c=a.createElement(b);d&&(d.attr&&g(c).attr(d.attr),d.children&& +g.each(d.children,function(a,b){c.appendChild(b)}),d.text&&c.appendChild(a.createTextNode(d.text)));return c}function A(a,b){var d=a.header[b].length,c;a.footer&&a.footer[b].length>d&&(d=a.footer[b].length);for(var e=0,f=a.body.length;ed&&(d=c),40'+ +c),c=c.replace(/_dt_b_namespace_token_/g,":"));c=c.replace(/<(.*?) xmlns=""(.*?)>/g,"<$1 $2>");a[b]=c}})}var i=g.fn.dataTable,h={version:"1.0.4-TableTools2",clients:{},moviePath:"",nextId:1,$:function(a){"string"==typeof a&&(a=l.getElementById(a));a.addClass||(a.hide=function(){this.style.display="none"},a.show=function(){this.style.display=""},a.addClass=function(a){this.removeClass(a);this.className+=" "+a},a.removeClass=function(a){this.className=this.className.replace(RegExp("\\s*"+a+"\\s*"), +" ").replace(/^\s+/,"").replace(/\s+$/,"")},a.hasClass=function(a){return!!this.className.match(RegExp("\\s*"+a+"\\s*"))});return a},setMoviePath:function(a){this.moviePath=a},dispatch:function(a,b,d){(a=this.clients[a])&&a.receiveEvent(b,d)},log:function(a){console.log("Flash: "+a)},register:function(a,b){this.clients[a]=b},getDOMObjectPosition:function(a){var b={left:0,top:0,width:a.width?a.width:a.offsetWidth,height:a.height?a.height:a.offsetHeight};""!==a.style.width&&(b.width=a.style.width.replace("px", +""));""!==a.style.height&&(b.height=a.style.height.replace("px",""));for(;a;)b.left+=a.offsetLeft,b.top+=a.offsetTop,a=a.offsetParent;return b},Client:function(a){this.handlers={};this.id=h.nextId++;this.movieId="ZeroClipboard_TableToolsMovie_"+this.id;h.register(this.id,this);a&&this.glue(a)}};h.Client.prototype={id:0,ready:!1,movie:null,clipText:"",fileName:"",action:"copy",handCursorEnabled:!0,cssEffects:!0,handlers:null,sized:!1,sheetName:"",glue:function(a,b){this.domElement=h.$(a);var d=99; +this.domElement.style.zIndex&&(d=parseInt(this.domElement.style.zIndex,10)+1);var c=h.getDOMObjectPosition(this.domElement);this.div=l.createElement("div");var e=this.div.style;e.position="absolute";e.left="0px";e.top="0px";e.width=c.width+"px";e.height=c.height+"px";e.zIndex=d;"undefined"!=typeof b&&""!==b&&(this.div.title=b);0!==c.width&&0!==c.height&&(this.sized=!0);this.domElement&&(this.domElement.appendChild(this.div),this.div.innerHTML=this.getHTML(c.width,c.height).replace(/&/g,"&"))}, +positionElement:function(){var a=h.getDOMObjectPosition(this.domElement),b=this.div.style;b.position="absolute";b.width=a.width+"px";b.height=a.height+"px";0!==a.width&&0!==a.height&&(this.sized=!0,b=this.div.childNodes[0],b.width=a.width,b.height=a.height)},getHTML:function(a,b){var d="",c="id="+this.id+"&width="+a+"&height="+b;if(navigator.userAgent.match(/MSIE/))var e=location.href.match(/^https/i)?"https://":"http://",d=d+(''); +else d+='';return d},hide:function(){this.div&&(this.div.style.left="-2000px")},show:function(){this.reposition()},destroy:function(){var a= +this;this.domElement&&this.div&&(g(this.div).remove(),this.div=this.domElement=null,g.each(h.clients,function(b,d){d===a&&delete h.clients[b]}))},reposition:function(a){a&&((this.domElement=h.$(a))||this.hide());if(this.domElement&&this.div){var a=h.getDOMObjectPosition(this.domElement),b=this.div.style;b.left=""+a.left+"px";b.top=""+a.top+"px"}},clearText:function(){this.clipText="";this.ready&&this.movie.clearText()},appendText:function(a){this.clipText+=a;this.ready&&this.movie.appendText(a)}, +setText:function(a){this.clipText=a;this.ready&&this.movie.setText(a)},setFileName:function(a){this.fileName=a;this.ready&&this.movie.setFileName(a)},setSheetData:function(a){this.ready&&this.movie.setSheetData(JSON.stringify(a))},setAction:function(a){this.action=a;this.ready&&this.movie.setAction(a)},addEventListener:function(a,b){a=a.toString().toLowerCase().replace(/^on/,"");this.handlers[a]||(this.handlers[a]=[]);this.handlers[a].push(b)},setHandCursor:function(a){this.handCursorEnabled=a;this.ready&& +this.movie.setHandCursor(a)},setCSSEffects:function(a){this.cssEffects=!!a},receiveEvent:function(a,b){var d,a=a.toString().toLowerCase().replace(/^on/,"");switch(a){case "load":this.movie=l.getElementById(this.movieId);if(!this.movie){d=this;setTimeout(function(){d.receiveEvent("load",null)},1);return}if(!this.ready&&navigator.userAgent.match(/Firefox/)&&navigator.userAgent.match(/Windows/)){d=this;setTimeout(function(){d.receiveEvent("load",null)},100);this.ready=!0;return}this.ready=!0;this.movie.clearText(); +this.movie.appendText(this.clipText);this.movie.setFileName(this.fileName);this.movie.setAction(this.action);this.movie.setHandCursor(this.handCursorEnabled);break;case "mouseover":this.domElement&&this.cssEffects&&this.recoverActive&&this.domElement.addClass("active");break;case "mouseout":this.domElement&&this.cssEffects&&(this.recoverActive=!1,this.domElement.hasClass("active")&&(this.domElement.removeClass("active"),this.recoverActive=!0));break;case "mousedown":this.domElement&&this.cssEffects&& +this.domElement.addClass("active");break;case "mouseup":this.domElement&&this.cssEffects&&(this.domElement.removeClass("active"),this.recoverActive=!1)}if(this.handlers[a])for(var c=0,e=this.handlers[a].length;c', +"xl/_rels/workbook.xml.rels":'',"[Content_Types].xml":'', +"xl/workbook.xml":'', +"xl/worksheets/sheet1.xml":'',"xl/styles.xml":''}, +z=[{match:/^\-?\d+\.\d%$/,style:60,fmt:function(a){return a/100}},{match:/^\-?\d+\.?\d*%$/,style:56,fmt:function(a){return a/100}},{match:/^\-?\$[\d,]+.?\d*$/,style:57},{match:/^\-?£[\d,]+.?\d*$/,style:58},{match:/^\-?€[\d,]+.?\d*$/,style:59},{match:/^\([\d,]+\)$/,style:61,fmt:function(a){return-1*a.replace(/[\(\)]/g,"")}},{match:/^\([\d,]+\.\d{2}\)$/,style:62,fmt:function(a){return-1*a.replace(/[\(\)]/g,"")}},{match:/^[\d,]+$/,style:63},{match:/^[\d,]+\.\d{2}$/,style:64}];i.Buttons.swfPath="//cdn.datatables.net/buttons/1.2.4/swf/flashExport.swf"; +i.Api.register("buttons.resize()",function(){g.each(h.clients,function(a,b){b.domElement!==p&&b.domElement.parentNode&&b.positionElement()})});i.ext.buttons.copyFlash=g.extend({},t,{className:"buttons-copy buttons-flash",text:function(a){return a.i18n("buttons.copy","Copy")},action:function(a,b,d,c){c._fromFlash&&(a=c._flash,d=y(b,c),c=c.customize?c.customize(d.str,c):d.str,a.setAction("copy"),s(a,c),b.buttons.info(b.i18n("buttons.copyTitle","Copy to clipboard"),b.i18n("buttons.copySuccess",{_:"Copied %d rows to clipboard", +1:"Copied 1 row to clipboard"},d.rows),3E3))},fieldSeparator:"\t",fieldBoundary:""});i.ext.buttons.csvFlash=g.extend({},t,{className:"buttons-csv buttons-flash",text:function(a){return a.i18n("buttons.csv","CSV")},action:function(a,b,d,c){a=c._flash;b=y(b,c);b=c.customize?c.customize(b.str,c):b.str;a.setAction("csv");a.setFileName(r(c));s(a,b)},escapeChar:'"'});i.ext.buttons.excelFlash=g.extend({},t,{className:"buttons-excel buttons-flash",text:function(a){return a.i18n("buttons.excel","Excel")}, +action:function(a,b,d,c){var a=c._flash,e=0,f=g.parseXML(o["xl/worksheets/sheet1.xml"]),h=f.getElementsByTagName("sheetData")[0],d={_rels:{".rels":g.parseXML(o["_rels/.rels"])},xl:{_rels:{"workbook.xml.rels":g.parseXML(o["xl/_rels/workbook.xml.rels"])},"workbook.xml":g.parseXML(o["xl/workbook.xml"]),"styles.xml":g.parseXML(o["xl/styles.xml"]),worksheets:{"sheet1.xml":f}},"[Content_Types].xml":g.parseXML(o["[Content_Types].xml"])},b=b.buttons.exportData(c.exportOptions),k,l,i=function(a){k=e+1;l=m(f, +"row",{attr:{r:k}});for(var b=0,c=a.length;b'+ +e),e=e.replace(/_dt_b_namespace_token_/g,":"));e=e.replace(/<(.*?) xmlns=""(.*?)>/g,"<$1 $2>");a.file(c,e)}})}function n(a,c,d){var b=a.createElement(c);d&&(d.attr&&i(b).attr(d.attr),d.children&&i.each(d.children,function(a,c){b.appendChild(c)}),d.text&&b.appendChild(a.createTextNode(d.text)));return b}function I(a,c){var d=a.header[c].length,b;a.footer&&a.footer[c].length>d&&(d=a.footer[c].length);for(var e=0,f=a.body.length;ed&&(d=b),401*a[1]?!0:!1};try{var v=new XMLSerializer,s}catch(O){}var z={"_rels/.rels":'', +"xl/_rels/workbook.xml.rels":'',"[Content_Types].xml":'', +"xl/workbook.xml":'', +"xl/worksheets/sheet1.xml":'',"xl/styles.xml":''}, +H=[{match:/^\-?\d+\.\d%$/,style:60,fmt:function(a){return a/100}},{match:/^\-?\d+\.?\d*%$/,style:56,fmt:function(a){return a/100}},{match:/^\-?\$[\d,]+.?\d*$/,style:57},{match:/^\-?£[\d,]+.?\d*$/,style:58},{match:/^\-?€[\d,]+.?\d*$/,style:59},{match:/^\-?\d+$/,style:65},{match:/^\-?\d+\.\d{2}$/,style:66},{match:/^\([\d,]+\)$/,style:61,fmt:function(a){return-1*a.replace(/[\(\)]/g,"")}},{match:/^\([\d,]+\.\d{2}\)$/,style:62,fmt:function(a){return-1*a.replace(/[\(\)]/g,"")}},{match:/^\-?[\d,]+$/,style:63}, +{match:/^\-?[\d,]+\.\d{2}$/,style:64}];l.ext.buttons.copyHtml5={className:"buttons-copy buttons-html5",text:function(a){return a.i18n("buttons.copy","Copy")},action:function(a,c,d,b){var a=F(c,b),e=a.str,d=i("
                  ").css({height:1,width:1,overflow:"hidden",position:"fixed",top:0,left:0});b.customize&&(e=b.customize(e,b));b=i("",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function aa(){return!0}function ba(){return!1}function ca(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),ha=/^\s+/,ia=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,ja=/<([\w:]+)/,ka=/\s*$/g,ra={option:[1,""],legend:[1,"
                  ","
                  "],area:[1,"",""],param:[1,"",""],thead:[1,"","
                  "],tr:[2,"","
                  "],col:[2,"","
                  "],td:[3,"","
                  "],_default:k.htmlSerialize?[0,"",""]:[1,"X
                  ","
                  "]},sa=da(y),ta=sa.appendChild(y.createElement("div"));ra.optgroup=ra.option,ra.tbody=ra.tfoot=ra.colgroup=ra.caption=ra.thead,ra.th=ra.td;function ua(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ua(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function va(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wa(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xa(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function ya(a){var b=pa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function za(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Aa(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Ba(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xa(b).text=a.text,ya(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!ga.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ta.innerHTML=a.outerHTML,ta.removeChild(f=ta.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ua(f),h=ua(a),g=0;null!=(e=h[g]);++g)d[g]&&Ba(e,d[g]);if(b)if(c)for(h=h||ua(a),d=d||ua(f),g=0;null!=(e=h[g]);g++)Aa(e,d[g]);else Aa(a,f);return d=ua(f,"script"),d.length>0&&za(d,!i&&ua(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=da(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(la.test(f)){h=h||o.appendChild(b.createElement("div")),i=(ja.exec(f)||["",""])[1].toLowerCase(),l=ra[i]||ra._default,h.innerHTML=l[1]+f.replace(ia,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&ha.test(f)&&p.push(b.createTextNode(ha.exec(f)[0])),!k.tbody){f="table"!==i||ka.test(f)?""!==l[1]||ka.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ua(p,"input"),va),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ua(o.appendChild(f),"script"),g&&za(h),c)){e=0;while(f=h[e++])oa.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ua(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&za(ua(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ua(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fa,""):void 0;if(!("string"!=typeof a||ma.test(a)||!k.htmlSerialize&&ga.test(a)||!k.leadingWhitespace&&ha.test(a)||ra[(ja.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ia,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ua(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ua(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&na.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ua(i,"script"),xa),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ua(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,ya),j=0;f>j;j++)d=g[j],oa.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qa,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Ca,Da={};function Ea(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fa(a){var b=y,c=Da[a];return c||(c=Ea(a,b),"none"!==c&&c||(Ca=(Ca||m("