Skip to content

Commit

Permalink
Build 1.0.4. Downgraded PHP requirement to 8.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonerickson committed Jun 9, 2023
1 parent 880587e commit 0cfc5f2
Show file tree
Hide file tree
Showing 7 changed files with 91 additions and 131 deletions.
2 changes: 1 addition & 1 deletion data/javascript.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<javascript app="stripeverification">
<file javascript_app="stripeverification" javascript_location="front" javascript_path="controllers/verification" javascript_name="ips.verification.main.js" javascript_type="controller" javascript_version="10003" javascript_position="1000050"><![CDATA[;( function($, _, undefined){
<file javascript_app="stripeverification" javascript_location="front" javascript_path="controllers/verification" javascript_name="ips.verification.main.js" javascript_type="controller" javascript_version="10004" javascript_position="1000050"><![CDATA[;( function($, _, undefined){
"use strict";
ips.controller.register('stripeverification.front.verification.main', {
Expand Down
2 changes: 1 addition & 1 deletion data/lang.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<language>
<app key="stripeverification" version="10003">
<app key="stripeverification" version="10004">
<word key="__app_stripeverification" js="0">Stripe Identity Verification</word>
<word key="menutab__stripeverification" js="0">Stripe Verification</word>
<word key="menutab__stripeverification_icon" js="0">cc-stripe</word>
Expand Down
3 changes: 2 additions & 1 deletion data/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"10000": "1.0.0",
"10001": "1.0.1",
"10002": "1.0.2",
"10003": "1.0.3"
"10003": "1.0.3",
"10004": "1.0.4"
}
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ services:
- mailhog
php:
build:
context: ./docker/8.1
context: ./docker/8.0
dockerfile: Dockerfile
image: invision-8.1/app
image: invision-8.0/app
volumes:
- './invision:/var/www/html' # Edit For Your Local Environment
- './api/:/var/www/html/applications/stripeverification/api'
Expand Down
23 changes: 23 additions & 0 deletions setup/upg_10004/data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"id": 10004,
"name": "1.0.4",
"steps": {
"queries": false,
"lang": false,
"theme": false,
"themeSettings": false,
"javascript": false,
"emailTemplates": false,
"hooks": false,
"acpSearchKeywords": false,
"settings": false,
"tasks": false,
"modules": false,
"widgets": false,
"customOptions": false,
"customRoutines": false
},
"forceMainUpgrader": false,
"forceManualDownloadNoCiC": false,
"forceManualDownloadCiC": false
}
13 changes: 9 additions & 4 deletions sources/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,16 @@
],
"homepage": "https://www.deschutesdesigngroup.com/",
"require": {
"php": "^8.1",
"stripe/stripe-php": "^v10.14",
"symfony/http-foundation": "^v6.3"
"php": "^8.0",
"stripe/stripe-php": "^10.15",
"symfony/http-foundation": "^5.4"
},
"config": {
"platform": {
"php": "8.0"
}
},
"require-dev": {
"symfony/var-dumper": "^6.3"
"symfony/var-dumper": "^5.4"
}
}
175 changes: 53 additions & 122 deletions sources/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0cfc5f2

Please sign in to comment.