Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TGR-152: PHP 8 update #16

Open
wants to merge 58 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
62db55e
Adds .idea to .gitignore
jberube-nypl Jul 10, 2024
cb19f05
Updates composer.json to allow latest versions of dependencies.
jberube-nypl Jul 10, 2024
e9306dd
Restores phpdotenv back to 2.x
jberube-nypl Jul 11, 2024
66d4e98
Upgrades phpdotenv back to 5.x
jberube-nypl Jul 11, 2024
12c0c6d
Upgrades phpdotenv back to 5.x
jberube-nypl Jul 11, 2024
8fd60a3
Upgrades phpdotenv back to 5.x
jberube-nypl Jul 11, 2024
c7f6231
Refactors logger and slim.
jberube-nypl Jul 12, 2024
4ead0f9
Refactors container for updates to Aura/DI.
jberube-nypl Aug 14, 2024
2072696
Makes updates for PHP8 compatibility.
jberube-nypl Aug 16, 2024
507358e
Updates Controller to use newer Request interface
jberube-nypl Sep 10, 2024
be5688e
Replaces getenv() with
jberube-nypl Sep 19, 2024
2528d97
Adds getJsonResponse() method to output response as JSON.
jberube-nypl Sep 19, 2024
a841d1a
Replaces usage of obsolete withJson() method.
jberube-nypl Sep 19, 2024
7ed9722
Updates where statements to use new Conditional class.
jberube-nypl Sep 19, 2024
96e3bdd
Replaces StatementContainer usage with StatementInterface.
jberube-nypl Sep 19, 2024
247ddb3
Adds getWhere() method to get the where clause of a sql select statem…
jberube-nypl Sep 19, 2024
227d262
Adds back options to json response.
jberube-nypl Sep 19, 2024
1a2714e
Updates composer.json to stay on major versions.
jberube-nypl Sep 20, 2024
e13820f
Update inserting array values
keithbauer Sep 30, 2024
255563f
Updates middleware functions.
jberube-nypl Oct 15, 2024
84ded90
Merge branch 'php8-update' of github.com:NYPL/php-microservice-starte…
jberube-nypl Oct 15, 2024
6a8f4b3
Replaces slim/pdo dependency with faapz/pdo.
jberube-nypl Oct 17, 2024
b0c64e1
Removes default empty string values from first two params since third…
jberube-nypl Oct 17, 2024
ebecf05
Adds return type to model.
jberube-nypl Oct 17, 2024
2dbe5b6
Instantiates whereClause variable.
jberube-nypl Oct 17, 2024
9946706
Replaces @SWG annotations with @OA.
jberube-nypl Oct 17, 2024
1b28a16
Removes setupDefaultRoutes() function.
jberube-nypl Oct 17, 2024
b803557
Update error variable usage
keithbauer Oct 24, 2024
2ebe486
Fix settings const
keithbauer Oct 24, 2024
325b3c0
Fix nested arrays
keithbauer Oct 28, 2024
0416cb9
Updates response object to interface.
jberube-nypl Dec 6, 2024
98c0354
Removes old avro-php library.
jberube-nypl Dec 10, 2024
afae691
Updates Avro library to use composer.
jberube-nypl Dec 10, 2024
c88c3a8
Replaces forked Avro PHP library with nealio/avro-php composer depend…
jberube-nypl Dec 20, 2024
e962af8
Adds composer patch.
jberube-nypl Dec 20, 2024
27eaee9
Adds composer.lock
jberube-nypl Dec 21, 2024
6890aad
Adds composer patches dependency.
jberube-nypl Dec 21, 2024
165b1be
Adds avro php fork to repo since patches aren't going to be applied f…
jberube-nypl Dec 21, 2024
c0cc998
Commits forked avro library because composer patch won't work for com…
jberube-nypl Dec 21, 2024
4681ae6
Fixes avro dir.
jberube-nypl Dec 21, 2024
31301d2
Adds lib to autoload dirs.
jberube-nypl Dec 21, 2024
dbc7cbb
Moves avro dir
jberube-nypl Dec 21, 2024
54bdf76
Adds avro to autoload
jberube-nypl Dec 21, 2024
9bca693
Adds separator
jberube-nypl Dec 21, 2024
98ceebc
Updates autoload method for Avro.
jberube-nypl Dec 21, 2024
0868c20
Applied patch to Avro.
jberube-nypl Dec 21, 2024
bf6306e
Removes unnecessary Avroloader class..
jberube-nypl Dec 21, 2024
8e30e82
Updates versions in composer.json.
jberube-nypl Dec 23, 2024
98afa8c
Checks for method before executing.
jberube-nypl Dec 23, 2024
cafc55b
Adds class for ExtendedUpdateStatement to match ExtendedSelectStatement.
jberube-nypl Dec 23, 2024
30e6769
Adds #[\AllowDynamicProperties] to classes to suppress depecated warn…
jberube-nypl Dec 30, 2024
56ac171
Replaces stringy library with one compatible with php 8.
jberube-nypl Dec 30, 2024
38150e3
Adds AllowDynamicProperties to Avro libraries to prevent deprecated m…
jberube-nypl Dec 30, 2024
4d1b353
Updates db methods to use new FAAPZ PDO API.
jberube-nypl Dec 30, 2024
47f8c9f
Updates IS NULL syntax.
jberube-nypl Dec 31, 2024
ed23456
Cleans up AvroDeserializer.php
jberube-nypl Jan 2, 2025
ef902b7
Cleans up Controller.php
jberube-nypl Jan 2, 2025
76d2fc2
Cleans up Service.php.
jberube-nypl Jan 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
composer.lock
vendor
.idea
.DS_Store
203 changes: 0 additions & 203 deletions avro-php-1.8.1/LICENSE

This file was deleted.

6 changes: 0 additions & 6 deletions avro-php-1.8.1/NOTICE

This file was deleted.

33 changes: 0 additions & 33 deletions avro-php-1.8.1/README.txt

This file was deleted.

94 changes: 0 additions & 94 deletions avro-php-1.8.1/examples/write_read.php

This file was deleted.

Loading