Skip to content

Commit 854ab04

Browse files
authored
Merge pull request #1 from bigbite/release/0.0.1
`release/0.0.1` to `main`
2 parents b223a12 + 72586dd commit 854ab04

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+20893
-1
lines changed

.circleci/config.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
version: 2.1
2+
3+
orbs:
4+
project: bigbite/[email protected]
5+
6+
jobs:
7+
build:
8+
executor:
9+
name: project/default
10+
php: '8.2'
11+
steps:
12+
- checkout
13+
- project/setup
14+
- project/composer-install
15+
- project/phpcs
16+
- project/npm-install
17+
- project/npm-build
18+
- project/phpstan:
19+
memory_limit: '512M'
20+
- project/create-build
21+
22+
workflows:
23+
workflow:
24+
jobs:
25+
- build:
26+
context: bigbite
27+
filters:
28+
branches:
29+
ignore: /^.*-built$/

.deployignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# npm
2+
3+
node_modules
4+
package-lock.json
5+
package.json
6+
7+
# composer
8+
9+
composer.lock
10+
composer.json
11+
12+
# build tools
13+
14+
src
15+
.phpcs.xml.dist
16+
webpack.config.js
17+
18+
# other
19+
20+
.gitignore
21+
vendor
22+
.github
23+
.node-version
24+
phpstan.neon

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @chrishbite @jaymcp @bigbite/lead-engineers

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules/
2+
vendor/
3+
dist/
4+
5+
.DS_Store
6+
inc/asset-settings.php

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v22.3.0

.phpcs.xml.dist

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0"?>
2+
<ruleset name="Big Bite Image Comparison Rules">
3+
<rule ref="./vendor/bigbite/phpcs-config/BigBite" />
4+
</ruleset>

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
# image-comparison
1+
# Image Comparison
2+
3+
Display two images in a comparison state.

composer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "bigbite/image-comparison",
3+
"description": "Display two images in a comparison state.",
4+
"type": "wordpress-plugin",
5+
"config": {
6+
"preferred-install": "dist",
7+
"allow-plugins": {
8+
"dealerdirect/phpcodesniffer-composer-installer": true
9+
}
10+
},
11+
"require-dev": {
12+
"bigbite/phpcs-config": "^2.0",
13+
"phpstan/phpstan": "^1.10",
14+
"szepeviktor/phpstan-wordpress": "^1.3"
15+
},
16+
"scripts": {
17+
"phpcs": "./vendor/bin/phpcs .",
18+
"phpstan": "@php ./vendor/bin/phpstan --memory-limit=512M"
19+
}
20+
}

0 commit comments

Comments
 (0)