Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Commit

Permalink
Fix PHP version for composer
Browse files Browse the repository at this point in the history
  • Loading branch information
tylermenezes committed Feb 8, 2018
1 parent 2edcfd6 commit 1134eda
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 20 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Vip/CertificateController.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function getIndex()
$ticket = Models\Ticket::find(\Route::input('ticket'));
// TODO(@tylermenezes): We should check if they've checked in, however Clear clears checkin time upon checkout.
$ends_at = new Carbon($ticket->event['batch']['ends_at']);
//if ($ends_at->gte(Carbon::now())) \App::abort(404);
if ($ends_at->gte(Carbon::now())) \App::abort(404);


$pdf = new \FPDI('L', 'mm', 'Letter');
Expand Down
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@
]
},
"config": {
"preferred-install": "dist"
"preferred-install": "dist",
"platform": {
"php": "7.0.22"
}
}
}
39 changes: 21 additions & 18 deletions composer.lock

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

0 comments on commit 1134eda

Please sign in to comment.