Subversion Repositories oidplus

Rev

Rev 930 | Rev 1068 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 930 Rev 1034
Line 31... Line 31...
31
# .svn files and therefore we cannot do a simple "svn update" delta update anymore)
31
# .svn files and therefore we cannot do a simple "svn update" delta update anymore)
32
rm -rf vendor
32
rm -rf vendor
33
rm composer.lock
33
rm composer.lock
34
 
34
 
35
# Download everything again
35
# Download everything again
36
composer update
36
composer update --no-dev
37
 
37
 
38
# Remove stuff we don't want to publish or PHP files which could be
38
# Remove stuff we don't want to publish or PHP files which could be
39
# executed (which would be a security risk, because the vendor/ directory
39
# executed (which would be a security risk, because the vendor/ directory
40
# can be accessed via the web-browser)
40
# can be accessed via the web-browser)
41
remove_vendor_rubbish() {
41
remove_vendor_rubbish() {
Line 90... Line 90...
90
 
90
 
91
# -------
91
# -------
92
# Update composer dependencies of plugins
92
# Update composer dependencies of plugins
93
# -------
93
# -------
94
 
94
 
95
composer update -d plugins/viathinksoft/publicPages/100_whois/whois/xml/
95
composer update --no-dev -d plugins/viathinksoft/publicPages/100_whois/whois/xml/
96
composer license -d plugins/viathinksoft/publicPages/100_whois/whois/xml/ > plugins/viathinksoft/publicPages/100_whois/whois/xml/vendor/licenses
96
composer license -d plugins/viathinksoft/publicPages/100_whois/whois/xml/ > plugins/viathinksoft/publicPages/100_whois/whois/xml/vendor/licenses
97
remove_vendor_rubbish plugins/viathinksoft/publicPages/100_whois/whois/xml/
97
remove_vendor_rubbish plugins/viathinksoft/publicPages/100_whois/whois/xml/
98
 
98
 
99
composer update -d plugins/viathinksoft/publicPages/100_whois/whois/json/
99
composer update --no-dev -d plugins/viathinksoft/publicPages/100_whois/whois/json/
100
composer license -d plugins/viathinksoft/publicPages/100_whois/whois/json/ > plugins/viathinksoft/publicPages/100_whois/whois/json/vendor/licenses
100
composer license -d plugins/viathinksoft/publicPages/100_whois/whois/json/ > plugins/viathinksoft/publicPages/100_whois/whois/json/vendor/licenses
101
remove_vendor_rubbish plugins/viathinksoft/publicPages/100_whois/whois/json/
101
remove_vendor_rubbish plugins/viathinksoft/publicPages/100_whois/whois/json/
102
 
102
 
103
# Change the PHP 7.2 requirement to PHP 7.0
103
# Change the PHP 7.2 requirement to PHP 7.0
104
# Since this is no official packagist package, composer does not know the required php version,
104
# Since this is no official packagist package, composer does not know the required php version,