Skip to content

Commit

Permalink
chore(deps): update to laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanSotelo committed May 31, 2024
1 parent 549646c commit d060fb5
Show file tree
Hide file tree
Showing 5 changed files with 3,241 additions and 1,652 deletions.
61 changes: 61 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-docker-compose
{
"name": "controlla-core",
// Update the 'dockerComposeFile' list if you have more compose files or use different names.
// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
"dockerComposeFile": [
"docker-compose.yml"
],
// The 'service' property is the name of the service for the container that VS Code should
// use. Update this value and .devcontainer/docker-compose.yml to the real service name.
"service": "workspace",
// The optional 'workspaceFolder' property is the path VS Code should open by default when
// connected. This is typically a file mount in .devcontainer/docker-compose.yml
"workspaceFolder": "/var/www/html",
"customizations": {
"vscode": {
"extensions": [
"onecentlin.laravel-extension-pack",
"felixfbecker.php-intellisense",
"bmewburn.vscode-intelephense-client",
"amiralizadeh9480.laravel-extra-intellisense",
"onecentlin.laravel5-snippets",
"onecentlin.laravel-blade",
"ryannaddy.laravel-artisan",
"codingyu.laravel-goto-view",
"IHunte.laravel-blade-wrapper",
"pgl.laravel-jump-controller",
"austenc.laravel-blade-spacer",
"hakcorp.php-awesome-snippets",
"xdebug.php-debug",
"emallin.phpunit",
"recca0120.vscode-phpunit",
"MehediDracula.php-namespace-resolver",
"open-southeners.laravel-pint",
"DEVSENSE.composer-php-vscode",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"formulahendry.auto-rename-tag",
"coenraads.bracket-pair-colorizer"
]
}
},
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Uncomment the next line if you want start specific services in your Docker Compose config.
// "runServices": [],
// Uncomment the next line if you want to keep your containers running after VS Code shuts down.
// "shutdownAction": "none",
// Uncomment the next line to run commands after the container is created.
// "postCreateCommand": "cat /etc/os-release",
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
"remoteUser": "controlla",
"mounts": [
"source=~/.ssh,target=/home/controlla/.ssh,type=bind"
]
}
13 changes: 13 additions & 0 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: "3.8"

services:
workspace:
image: controlla/controlla:php-8.2
platform: linux/x86_64
volumes:
- ../:/var/www/html
networks:
- workspace

networks:
workspace:
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@
],
"type": "library",
"scripts": {
"test": "phpunit tests",
"test:dist": "phpunit --coverage-clover clover.xml",
"test:coverage": "php-coveralls -v -x clover.xml -o ./logs --exclude-no-stmt"
"test": "vendor/bin/phpunit",
"test:unit": "phpunit --verbose --testsuite Unit",
"test:integration": "phpunit --verbose --testsuite Integration"
},
"require": {
"php": ">=7.2",
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/config": "^8.0|^9.0|^10.0",
"illuminate/console": "^8.57|^9.0|^10.0",
"php": ">=7.2|^8.0",
"illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0|^11.0",
"illuminate/config": "^7.0 || ^8.0 || ^9.0 || ^10.0|^11.0",
"illuminate/console":"^7.0 || ^8.0 || ^9.0 || ^10.0|^11.0",
"laravel/ui": "^3.3|^4.3"
},
"require-dev": {
"laravel-notification-channels/twilio": "dev-master",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^4.0|^5.0|^6.0",
"phpunit/phpunit": "^8.0|^9.0"
"mockery/mockery": "^1.3",
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0 || ^8.0|^9.0",
"phpunit/phpunit": "^8.5|^9.5|^10.5"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit d060fb5

Please sign in to comment.