Skip to content

Commit 696e3b9

Browse files
committed
bugfix
1 parent e719d1f commit 696e3b9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

install.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
$composer = file_get_contents('https://getcomposer.org/composer.phar');
77
file_put_contents('composer.phar', $composer);
88
}
9-
exec('php composer.phar install');
9+
exec('php composer.phar install --ignore-platform-reqs');
1010

1111
include 'patch.php';

tests/fixtures/blog_mysql.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ INSERT INTO `events` (`name`, `datetime`, `visitors`) VALUES
130130
('Launch', '2016-01-01 13:01:01', 0);
131131

132132
DROP VIEW IF EXISTS `tag_usage`;
133-
CREATE DEFINER = 'php-crud-api' VIEW `tag_usage` AS select `tags`.`id` as `id`, `name`, count(`name`) AS `count` from `tags`, `post_tags` where `tags`.`id` = `post_tags`.`tag_id` group by `tags`.`id`, `name` order by `count` desc, `name`;
133+
CREATE VIEW `tag_usage` AS select `tags`.`id` as `id`, `name`, count(`name`) AS `count` from `tags`, `post_tags` where `tags`.`id` = `post_tags`.`tag_id` group by `tags`.`id`, `name` order by `count` desc, `name`;
134134

135135
DROP TABLE IF EXISTS `products`;
136136
CREATE TABLE `products` (

update.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
$composer = file_get_contents('https://getcomposer.org/composer.phar');
77
file_put_contents('composer.phar', $composer);
88
}
9-
exec('php composer.phar update');
9+
exec('php composer.phar update --ignore-platform-reqs');
1010

1111
include 'patch.php';

0 commit comments

Comments
 (0)