Skip to content

Commit

Permalink
Merge pull request #371 from understrap/develop
Browse files Browse the repository at this point in the history
Release 1.2.0 Version
  • Loading branch information
bacoords authored Dec 9, 2022
2 parents fa849f7 + dc24df4 commit 8555f79
Show file tree
Hide file tree
Showing 188 changed files with 26,242 additions and 24,682 deletions.
55 changes: 46 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,52 @@
.sass-cache
# ------------------------------------------------------------------------
# This file specifies intentionally untracked files that Git should ignore
# - https://git-scm.com/docs/gitignore
# ------------------------------------------------------------------------

bower_components

node_modules

understrap.zip
# Numerous always-ignore extensions
*.bak
*.cvs
*.db
*.diff
*.err
*.log
*.orig
*.rej
*.zip

dist
# Ignore all files and directories starting with . or ~ or ._ or ending with ~
.*
~*
*~
._*
# but track
!.babelrc.js
!.browserslist
!.editorconfig
!.gitattributes
!.github
!.gitignore

dist-product
# Ignore all files with .lock extentions
*.lock
# but track
!composer.lock

npm-debug.log
# OS or Editor files and folders
*.code-workspace
*.elc
*.esproj
*.komodoproject
*.sublime*
*.tmproj*

# Dependencies
bower_components
node_modules
/vendor/

# Other Understrap specific files and directories
phpcs.xml
dist/
dist-product/
**/img
57 changes: 49 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,51 @@
{
"name": "holger1411/understrap-child",
"description": "Basic Child Theme for Understrap Theme Framework",
"type": "library",
"license": "GPL-2.0",
"minimum-stability": "stable",
"require": {},
"keywords": ["wordpress","theme","bootstrap"],
"homepage": "https://github.com/holger1411/understrap-child"
"name": "understrap/understrap-child",
"description": "Basic Child Starter Theme for Understrap",
"type": "wordpress-theme",
"license": "GPL-3.0",
"minimum-stability": "stable",
"keywords": [
"wordpress",
"theme",
"bootstrap"
],
"homepage": "https://github.com/understrap/understrap-child",
"authors": [
{
"name": "Contributors",
"homepage": "https://github.com/understrap/understrap-child/contributors.md"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpcompatibility/phpcompatibility-wp": "^2.1.4",
"phpmd/phpmd": "^2.13.0",
"phpstan/phpstan": "^1.9.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7.1",
"szepeviktor/phpstan-wordpress": "^1.1.3",
"wp-coding-standards/wpcs": "^2.3.0",
"wptrt/wpthemereview": "^0.2.1"
},
"scripts": {
"php-lint": "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint --exclude vendor --exclude node_modules --exclude dist --exclude .git --exclude .phpstan-cache .",
"phpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs -p",
"phpcs-ga": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs -n --report=checkstyle",
"phpcs-fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"phpcs-config-set" : "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --config-set installed_paths ../../phpcompatibility/php-compatibility,../../phpcompatibility/phpcompatibility-paragonie,../../phpcompatibility/phpcompatibility-wp,../../wp-coding-standards/wpcs,../../wptrt/wpthemereview",
"phpmd": "@php ./vendor/phpmd/phpmd/src/bin/phpmd . ansi phpmd.xml",
"phpmd-baseline": "@phpmd -- --generate-baseline",
"phpmd-ga": "@php ./vendor/phpmd/phpmd/src/bin/phpmd . github phpmd.xml",
"phpstan": "@php ./vendor/phpstan/phpstan/phpstan analyse -a src/phpstan/autoload.php",
"phpstan-baseline": "@php ./vendor/phpstan/phpstan/phpstan analyse -a src/phpstan/autoload.php --generate-baseline",
"post-install-cmd": "@phpcs-config-set",
"post-update-cmd": "@phpcs-config-set"
},
"support": {
"issues": "https://github.com/understrap/understrap/issues",
"source": "https://github.com/understrap/understrap"
}
}
Loading

0 comments on commit 8555f79

Please sign in to comment.