Skip to content

Commit a1bfdb9

Browse files
authored
Merge pull request #61 from CU-CommunityApps/install-fixes
Adjust some settings for better installs
2 parents b55f4ab + 6055983 commit a1bfdb9

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.lando.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: cd-laravelstarterkit
22
recipe: laravel
33
config:
44
webroot: ./public
5-
php: 8.1
5+
php: 8.2
66
composer_version: 2-latest
77

88
tooling:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
]
3333
}
3434
},
35-
"minimum-stability": "dev",
35+
"minimum-stability": "stable",
3636
"prefer-stable": true
3737
}

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
bootstrap="vendor/autoload.php"
55
colors="true"
66
testdox="true"
7-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
7+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
88
cacheDirectory=".phpunit.cache"
99
>
1010
<source>

project/.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
APP_NAME=":project_name"
2-
APP_ENV=testing
2+
APP_ENV=local
33
APP_KEY=
44
APP_DEBUG=true
55
APP_URL=https://:project_slug
@@ -23,7 +23,7 @@ SESSION_DRIVER=file
2323
SESSION_LIFETIME=120
2424

2525
MAIL_MAILER=log
26-
MAIL_HOST=mailhog
26+
MAIL_HOST=mailpit
2727
MAIL_PORT=1025
2828
MAIL_USERNAME=null
2929
MAIL_PASSWORD=null

project/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/.phpunit.cache
12
/node_modules
23
/public/build
34
/public/hot

project/.lando.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ name: :project_slug
22
recipe: laravel
33
config:
44
webroot: ./public
5-
php: 8.1
5+
php: 8.2
66
composer_version: 2-latest

0 commit comments

Comments
 (0)