Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
deploy:
name: Deploy website
runs-on: ubuntu-latest
runs-on: "ubuntu-20.04"
steps:
- name: Checkout
uses: actions/checkout@main
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
php-version: 8.2
extensions: mbstring, intl, readline
tools: composer:v2

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/netlify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request_target:
jobs:
build:
runs-on: ubuntu-latest
runs-on: "ubuntu-20.04"
if: github.repository_owner == 'ThePHPF'
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
php-version: '8.2'
extensions: mbstring, intl, readline
tools: composer:v2

Expand All @@ -57,4 +57,4 @@ jobs:
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1
timeout-minutes: 1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The site

To develop the website, you will need:

- PHP 8.0 or later
- PHP 8.2 or later
- Composer
- Node 14 or 16 with NPM

Expand Down
14 changes: 5 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,22 @@
}
],
"require": {
"php": "^8.0",
"sculpin/sculpin": "^3.1",
"twig/twig": "2.15.3",
"php": "^8.2",
"ext-gd": "*",
"ext-dom": "*"
"ext-dom": "*",
"sculpin/sculpin": "3.3.0-alpha"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"scripts": {
"publish": [
"./publish.sh"
],
"sculpin-watch": [
"Composer\\Config::disableProcessTimeout",
"sculpin generate --watch --server"
],
"yarn-watch": [
"npx-watch": [
"Composer\\Config::disableProcessTimeout",
"yarn encore dev --watch"
"npx tailwind -i assets/css/app.css -o source/assets/css/app.css --watch"
]
},
"config": {
Expand Down
Loading