Skip to content
Open
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
12 changes: 0 additions & 12 deletions .editorconfig

This file was deleted.

8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
/conifer

# Docs
/_book/
docs/.vitepress/dist
docs/.vitepress/cache
docs/.vitepress/dist

# test artifacts
/test/wp/
/test/wp-tests-lib/
.phpunit.result.cache

# build artifacts
/conifer-*.tar.gz
Expand All @@ -32,6 +32,4 @@ wp-cli.local.yml

# IDEs
.vscode/*
.idea

.phpunit.result.cache
.idea/
16 changes: 5 additions & 11 deletions .lando.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ config:
php: '8.1'

services:
node:
type: node:24
run:
- yarn && yarn docs:build

appserver:
build_as_root:
run_as_root:
- apt-get update
- apt-get install zip
- apt-get install subversion -y
Expand All @@ -16,11 +20,6 @@ services:
- composer install
- ./scripts/setup-wordpress.sh

node:
type: node:22
build:
- yarn && yarn docs:build

database:
type: mysql:5.7

Expand Down Expand Up @@ -127,11 +126,6 @@ tooling:
cmd: 'yarn docs:build'
description: 'Build Conifer docs'

rector:
service: appserver
cmd: 'rector'
description: 'Run Rector commands'

proxy:
appserver:
- conifer.lndo.site
Expand Down
15 changes: 6 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,26 @@
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-dom": "*",
"ext-libxml": "*",
"timber/timber": "^2.2"
},
"require-dev": {
"10up/wp_mock": "dev-dev",
"behat/behat": "^3.25.0",
"behat/behat": "^v3.29.0",
"johnpbloch/wordpress-core": "^6.5.5",
"johnpbloch/wordpress-core-installer": "^2.0.0",
"mikey179/vfsstream": "~1",
"mnsami/composer-custom-directory-installer": "^2.0",
"php-stubs/acf-pro-stubs": "^6.5",
"phpunit/phpunit": "^9.0",
"rector/rector": "^2.2",
"sitecrafting/groot": "dev-master",
"szepeviktor/phpstan-wordpress": "^2.0.3",
"wp-coding-standards/wpcs": "^3.2.0"
"phpunit/phpunit": "^9",
"sitecrafting/groot": "^1.0",
"szepeviktor/phpstan-wordpress": "^v2.0.3",
"wp-coding-standards/wpcs": "^2.3"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.1"
},
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
Expand Down
Loading