-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ae32403
Showing
125 changed files
with
14,776 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
APP_NAME=Manolo_Limitada | ||
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=test | ||
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="[email protected]" | ||
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}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: issues | ||
|
||
on: | ||
issues: | ||
types: [labeled] | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
help-wanted: | ||
uses: laravel/.github/.github/workflows/issues.yml@main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: pull requests | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened] | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
uneditable: | ||
uses: laravel/.github/.github/workflows/pull-requests.yml@main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- '*.x' | ||
pull_request: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: true | ||
matrix: | ||
php: [8.1, 8.2] | ||
|
||
name: PHP ${{ matrix.php }} | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite | ||
coverage: none | ||
|
||
- name: Install Composer dependencies | ||
run: composer install --prefer-dist --no-interaction --no-progress | ||
|
||
- name: Copy environment file | ||
run: cp .env.example .env | ||
|
||
- name: Generate app key | ||
run: php artisan key:generate | ||
|
||
- name: Execute tests | ||
run: vendor/bin/phpunit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: update changelog | ||
|
||
on: | ||
release: | ||
types: [released] | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
update: | ||
permissions: | ||
contents: write | ||
uses: laravel/.github/.github/workflows/update-changelog.yml@main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/.phpunit.cache | ||
/node_modules | ||
/public/build | ||
/public/hot | ||
/public/storage | ||
/storage/*.key | ||
/vendor | ||
.env | ||
.env.backup | ||
.env.production | ||
.phpunit.result.cache | ||
Homestead.json | ||
Homestead.yaml | ||
auth.json | ||
npm-debug.log | ||
yarn-error.log | ||
/.fleet | ||
/.idea | ||
/.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
php: | ||
preset: laravel | ||
disabled: | ||
- no_unused_imports | ||
finder: | ||
not-name: | ||
- index.php | ||
js: true | ||
css: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
/* | ||
SQLyog Ultimate v11.33 (64 bit) | ||
MySQL - 10.4.27-MariaDB : Database - test | ||
********************************************************************* | ||
*/ | ||
|
||
/*!40101 SET NAMES utf8 */; | ||
|
||
/*!40101 SET SQL_MODE=''*/; | ||
|
||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; | ||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; | ||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; | ||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | ||
CREATE DATABASE /*!32312 IF NOT EXISTS*/`test` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */; | ||
|
||
USE `test`; | ||
|
||
/*Table structure for table `contactos` */ | ||
|
||
DROP TABLE IF EXISTS `contactos`; | ||
|
||
CREATE TABLE `contactos` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`cedula` varchar(15) DEFAULT NULL, | ||
`nombre` varchar(50) DEFAULT NULL, | ||
`apellidos` varchar(50) DEFAULT NULL, | ||
`fnacimiento` date DEFAULT NULL, | ||
`telefono` varchar(20) DEFAULT NULL, | ||
`direccion` text DEFAULT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; | ||
|
||
/*Data for the table `contactos` */ | ||
|
||
insert into `contactos`(`id`,`cedula`,`nombre`,`apellidos`,`fnacimiento`,`telefono`,`direccion`,`created_at`,`updated_at`) values (1,'1234','JORDAN','GARCIA','1980-08-03','1234','CALLE 123 FALSA','2023-03-31 21:48:00','2023-03-31 21:59:22'); | ||
|
||
/*Table structure for table `failed_jobs` */ | ||
|
||
DROP TABLE IF EXISTS `failed_jobs`; | ||
|
||
CREATE TABLE `failed_jobs` ( | ||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | ||
`uuid` varchar(255) NOT NULL, | ||
`connection` text NOT NULL, | ||
`queue` text NOT NULL, | ||
`payload` longtext NOT NULL, | ||
`exception` longtext NOT NULL, | ||
`failed_at` timestamp NOT NULL DEFAULT current_timestamp(), | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
|
||
/*Data for the table `failed_jobs` */ | ||
|
||
/*Table structure for table `migrations` */ | ||
|
||
DROP TABLE IF EXISTS `migrations`; | ||
|
||
CREATE TABLE `migrations` ( | ||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT, | ||
`migration` varchar(255) NOT NULL, | ||
`batch` int(11) NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
|
||
/*Data for the table `migrations` */ | ||
|
||
insert into `migrations`(`id`,`migration`,`batch`) values (1,'2014_10_12_000000_create_users_table',1),(2,'2014_10_12_100000_create_password_reset_tokens_table',1),(3,'2014_10_12_100000_create_password_resets_table',1),(4,'2019_08_19_000000_create_failed_jobs_table',1),(5,'2019_12_14_000001_create_personal_access_tokens_table',1); | ||
|
||
/*Table structure for table `password_reset_tokens` */ | ||
|
||
DROP TABLE IF EXISTS `password_reset_tokens`; | ||
|
||
CREATE TABLE `password_reset_tokens` ( | ||
`email` varchar(255) NOT NULL, | ||
`token` varchar(255) NOT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
PRIMARY KEY (`email`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
|
||
/*Data for the table `password_reset_tokens` */ | ||
|
||
/*Table structure for table `password_resets` */ | ||
|
||
DROP TABLE IF EXISTS `password_resets`; | ||
|
||
CREATE TABLE `password_resets` ( | ||
`email` varchar(255) NOT NULL, | ||
`token` varchar(255) NOT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
KEY `password_resets_email_index` (`email`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
|
||
/*Data for the table `password_resets` */ | ||
|
||
/*Table structure for table `personal_access_tokens` */ | ||
|
||
DROP TABLE IF EXISTS `personal_access_tokens`; | ||
|
||
CREATE TABLE `personal_access_tokens` ( | ||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | ||
`tokenable_type` varchar(255) NOT NULL, | ||
`tokenable_id` bigint(20) unsigned NOT NULL, | ||
`name` varchar(255) NOT NULL, | ||
`token` varchar(64) NOT NULL, | ||
`abilities` text DEFAULT NULL, | ||
`last_used_at` timestamp NULL DEFAULT NULL, | ||
`expires_at` timestamp NULL DEFAULT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `personal_access_tokens_token_unique` (`token`), | ||
KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
|
||
/*Data for the table `personal_access_tokens` */ | ||
|
||
/*Table structure for table `users` */ | ||
|
||
DROP TABLE IF EXISTS `users`; | ||
|
||
CREATE TABLE `users` ( | ||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | ||
`name` varchar(255) NOT NULL, | ||
`email` varchar(255) NOT NULL, | ||
`email_verified_at` timestamp NULL DEFAULT NULL, | ||
`password` varchar(255) NOT NULL, | ||
`remember_token` varchar(100) DEFAULT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `users_email_unique` (`email`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
|
||
/*Data for the table `users` */ | ||
|
||
insert into `users`(`id`,`name`,`email`,`email_verified_at`,`password`,`remember_token`,`created_at`,`updated_at`) values (1,'Usuario de Test.','[email protected]',NULL,'$2y$10$i8/om/7CD5V3zbbckwCy6ewQIfbm0QK.GFkMBSITqj09QABVvWLwq',NULL,'2023-03-31 20:39:25','2023-03-31 22:41:11'); | ||
|
||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | ||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; | ||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; | ||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Release Notes | ||
|
||
## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.4...10.x) | ||
|
||
## [v10.0.4](https://github.com/laravel/laravel/compare/v10.0.3...v10.0.4) - 2023-02-27 | ||
|
||
- Fix typo by @izzudin96 in https://github.com/laravel/laravel/pull/6128 | ||
- Specify facility in the syslog driver config by @nicolus in https://github.com/laravel/laravel/pull/6130 | ||
|
||
## [v10.0.3](https://github.com/laravel/laravel/compare/v10.0.2...v10.0.3) - 2023-02-21 | ||
|
||
- Remove redundant `@return` docblock in UserFactory by @datlechin in https://github.com/laravel/laravel/pull/6119 | ||
- Reverts change in asset helper by @timacdonald in https://github.com/laravel/laravel/pull/6122 | ||
|
||
## [v10.0.2](https://github.com/laravel/laravel/compare/v10.0.1...v10.0.2) - 2023-02-16 | ||
|
||
- Remove unneeded call by @taylorotwell in https://github.com/laravel/laravel/commit/3986d4c54041fd27af36f96cf11bd79ce7b1ee4e | ||
|
||
## [v10.0.1](https://github.com/laravel/laravel/compare/v10.0.0...v10.0.1) - 2023-02-15 | ||
|
||
- Add PHPUnit result cache to gitignore by @itxshakil in https://github.com/laravel/laravel/pull/6105 | ||
- Allow php-http/discovery as a composer plugin by @nicolas-grekas in https://github.com/laravel/laravel/pull/6106 | ||
|
||
## [v10.0.0 (2022-02-14)](https://github.com/laravel/laravel/compare/v9.5.2...v10.0.0) | ||
|
||
Laravel 10 includes a variety of changes to the application skeleton. Please consult the diff to see what's new. |
Oops, something went wrong.