Skip to content

Commit

Permalink
Merge pull request #1 from bigbite/release/0.0.1
Browse files Browse the repository at this point in the history
`release/0.0.1` to `main`
  • Loading branch information
jaymcp authored Jun 28, 2024
2 parents b223a12 + 72586dd commit 854ab04
Show file tree
Hide file tree
Showing 49 changed files with 20,893 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
version: 2.1

orbs:
project: bigbite/[email protected]

jobs:
build:
executor:
name: project/default
php: '8.2'
steps:
- checkout
- project/setup
- project/composer-install
- project/phpcs
- project/npm-install
- project/npm-build
- project/phpstan:
memory_limit: '512M'
- project/create-build

workflows:
workflow:
jobs:
- build:
context: bigbite
filters:
branches:
ignore: /^.*-built$/
24 changes: 24 additions & 0 deletions .deployignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# npm

node_modules
package-lock.json
package.json

# composer

composer.lock
composer.json

# build tools

src
.phpcs.xml.dist
webpack.config.js

# other

.gitignore
vendor
.github
.node-version
phpstan.neon
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @chrishbite @jaymcp @bigbite/lead-engineers
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules/
vendor/
dist/

.DS_Store
inc/asset-settings.php
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v22.3.0
4 changes: 4 additions & 0 deletions .phpcs.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0"?>
<ruleset name="Big Bite Image Comparison Rules">
<rule ref="./vendor/bigbite/phpcs-config/BigBite" />
</ruleset>
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# image-comparison
# Image Comparison

Display two images in a comparison state.
20 changes: 20 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "bigbite/image-comparison",
"description": "Display two images in a comparison state.",
"type": "wordpress-plugin",
"config": {
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"bigbite/phpcs-config": "^2.0",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"scripts": {
"phpcs": "./vendor/bin/phpcs .",
"phpstan": "@php ./vendor/bin/phpstan --memory-limit=512M"
}
}
Loading

0 comments on commit 854ab04

Please sign in to comment.