Skip to content

Commit

Permalink
Remove composer lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnynews committed Apr 16, 2024
1 parent 5d5fb62 commit 78a3447
Show file tree
Hide file tree
Showing 4 changed files with 787 additions and 734 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test-unit-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@ jobs:

- name: Install dependencies
run: |
composer update yoast/wp-test-utils --with-all-dependencies --no-interaction
composer install --prefer-dist --no-suggest --no-progress --no-interaction --no-scripts --ignore-platform-reqs
composer install --prefer-dist --no-suggest --no-progress --no-interaction --no-scripts
composer dump-autoload --no-interaction
- name: Shutdown default MySQL service
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ phpcs.xml
phpunit.xml
Thumbs.db
wp-cli.local.yml
composer.lock
node_modules/
vendor/
.idea/
Expand Down
31 changes: 13 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,37 @@
{
"name": "spacedmonkey/wp-rest-blocks",
"type": "wordpress-plugin",
"description": "Add gutenberg blocks data into post / page / widget REST API endpoints.",
"homepage": "http://wp-api.org/",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"authors": [
{
"name": "Jonny Harris",
"homepage": "https://www.spacedmonkey.com/"
}
],
"homepage": "http://wp-api.org/",
"support": {
"issues": "https://github.com/spacedmonkey/wp-rest-blocks/issues"
},
"require": {
"composer/installers": "^1.10",
"php": "^7.0 || ^8.0",
"composer/installers": "^1.10",
"tburry/pquery": "^1.1"
},
"config": {
"discard-changes": true,
"platform": {
"php": "7.0"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"wp-coding-standards/wpcs": "^3.0",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"wp-coding-standards/wpcs": "^3.0",
"yoast/wp-test-utils": "^1.2.0"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"discard-changes": true,
"sort-packages": true
},
"scripts": {
"phpcbf": "phpcbf",
"phpcs": "phpcs",
Expand Down
Loading

0 comments on commit 78a3447

Please sign in to comment.