-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Removed name from datasource, updated GravityFormsDataSource with all formatted values. * PHPStan fixes * Remove need for inner composer.json * Fix PHPStan issues * Fix typecast of title * Fix Github Action * Exclude PHPStan check in CI * Revert "Remove need for inner composer.json" This reverts commit abb1c41. * Fix PHPStan for survey add-on * Update GitHub cache action version * Update GitHub checkout action version * Update CircleCI machine image * Add polyfills for iconv and mbstring * Update composer.lock * Bump version to 2.3.2 & update changelog * Make sure Fields class is loaded * Ignore error messages on rendering * Update Version tags --------- Co-authored-by: Doeke Norg <[email protected]> Co-authored-by: Zack Katz <[email protected]>
- Loading branch information
1 parent
e32706a
commit 714d36a
Showing
32 changed files
with
526 additions
and
310 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ vendor_prefixed | |
!vendor_prefixed/.gitkeep | ||
!build/strauss.phar | ||
!build/vendor_prefixed/.gitkeep | ||
phpstan.neon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,9 @@ | |
"ext-json": "*", | ||
"php": "^7.2", | ||
"gravitykit/gravityexport-base": "dev-master", | ||
"phpoffice/phpspreadsheet": "1.19.*" | ||
"phpoffice/phpspreadsheet": "1.19.*", | ||
"symfony/polyfill-iconv": "^1.31", | ||
"symfony/polyfill-mbstring": "^1.31" | ||
}, | ||
"autoload": { | ||
"classmap": [ | ||
|
@@ -37,20 +39,40 @@ | |
"GFExcel\\": "src/" | ||
} | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "[email protected]:gravityforms/gravityforms.git" | ||
}, | ||
{ | ||
"type": "package", | ||
"package": { | ||
"name": "gravityforms/gravitysurvey", | ||
"version": "dev-master", | ||
"source": { | ||
"type": "git", | ||
"url": "[email protected]:gravityforms/gravityformssurvey.git", | ||
"reference": "HEAD" | ||
} | ||
} | ||
} | ||
], | ||
"autoload-dev": { | ||
"psr-4": { | ||
"GFExcel\\Tests\\": "tests/" | ||
} | ||
}, | ||
"require-dev": { | ||
"gravityforms/gravityforms": "dev-master", | ||
"gravityforms/gravitysurvey": "dev-master", | ||
"phpunit/phpunit": "7.5.*", | ||
"10up/wp_mock": "0.4.*", | ||
"szepeviktor/phpstan-wordpress": "^0.6.2", | ||
"phpstan/phpstan-mockery": "^0.12.5", | ||
"szepeviktor/phpstan-wordpress": "^1.0", | ||
"phpstan/phpstan-mockery": "^1.1", | ||
"overtrue/phplint": "^2.1" | ||
}, | ||
"scripts": { | ||
"unbuild": "rm -rf build/composer.* build/vendor build/src", | ||
"unbuild": "rm -rf build/composer.* build/vendor*/* build/src", | ||
"build": [ | ||
"@unbuild", | ||
"cp composer.json build/composer.json", | ||
|
@@ -62,6 +84,7 @@ | |
], | ||
"linter": "vendor/bin/phplint --no-cache", | ||
"test": "vendor/bin/phpunit", | ||
"analyse": "vendor/bin/phpstan", | ||
"post-install-cmd": [ | ||
"composer dump-autoload -o" | ||
], | ||
|
Oops, something went wrong.