mindgrub/mtip

PHP library to submit an MTIP application.

Maintainers

Details

github.com/Mindgrub/mtip

Source

Issues

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 5

Forks: 0

Open Issues: 0

pkg:composer/mindgrub/mtip

dev-master 2019-01-09 22:23 UTC

This package is auto-updated.

Last update: 2025-10-10 13:24:22 UTC


README

This library allows field data and submission of the MTIP application, found originally at https://careers2.umbc.edu/employers/mtip_app_response.php

Usage

// Create a new application.
$application = \Mindgrub\MTIP\MTIPApplication();

// Examine fields on the application.
$available_fields = $application->getFieldData();

// Set fields on the application.
$application->setField('first_name', $my_first_name);

// Submit the application.
$application->submit();

Submission Response

$application->submit() returns an array with 3 keys:

  • status, either 0 or 1 depending on success.
  • message, describing the result of the submission.
  • response, a Guzzle Response Object received after making the submission, where applicable.