Skip to content
This repository has been archived by the owner on Apr 3, 2021. It is now read-only.

Commit

Permalink
Changed company name references
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrankruijter committed Mar 5, 2020
1 parent 7bd777c commit a6901b5
Show file tree
Hide file tree
Showing 20 changed files with 33 additions and 88 deletions.
69 changes: 7 additions & 62 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,66 +4,34 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 5.0.0 - 2019-11-10
### Added
- Nothing
## 5.0.1 - 2020-03-05
### Changed
- Changed company name references.

## 5.0.0 - 2019-11-10
### Changed
- Unified namespace conventions used across packages

### Deprecated
- Nothing

### Removed
- Nothing

### Fixed
- Nothing

### Security
- Nothing

## 4.0.0 - 2019-10-10
### Added
- Command interface and implementation.
- Factories for Requests and Commands.

### Changed
- Request and response methods return types to simplify implementing the
- Request and response methods return types to simplify implementing the
objects in applications.
- Simplified the README for easier maintenance.

### Deprecated
- Nothing

### Removed
- Nothing

### Fixed
- Nothing

### Security
- Nothing

## 3.0.0 - 2019-05-16
### Added
- MethodEnum to make a more strict definition of the available methods.

### Changed
- Order of parameters for the Request object constructor.

### Deprecated
- Nothing

### Removed
- RequestInterface method definitions.

### Fixed
- Nothing

### Security
- Nothing

## 2.0.0 - 2019-03-22
### Added
- Added parameters to the Request interface and implementation.
Expand All @@ -72,18 +40,9 @@ objects in applications.
- Order of constructor parameters
- Default value of the request method.

### Deprecated
- Nothing

### Removed
- SearchCriteria dependency by expecting GET parameters as an associative array.

### Fixed
- Nothing

### Security
- Nothing

## 1.0.0 - 2019-03-05
### Added
- Initial implementation of ulrack/transaction
Expand All @@ -94,22 +53,8 @@ objects in applications.
- `Ulrack\Transaction\Exception\HeaderNotFoundException`
- Unit Tests

### Changed
- Nothing

### Deprecated
- Nothing

### Removed
- Nothing

### Fixed
- Nothing

### Security
- Nothing

[Unreleased]: https://github.com/ulrack/transaction/compare/5.0.0...HEAD
[Unreleased]: https://github.com/ulrack/transaction/compare/5.0.1...HEAD
[5.0.1]: https://github.com/ulrack/transaction/compare/5.0.0...5.0.1
[5.0.0]: https://github.com/ulrack/transaction/compare/4.0.0...5.0.0
[4.0.0]: https://github.com/ulrack/transaction/compare/3.0.0...4.0.0
[3.0.0]: https://github.com/ulrack/transaction/compare/2.0.0...3.0.0
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at info@jyxon.com. All
reported by contacting the project team at info@grizzit.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Jyxon
Copyright (c) 2019 GrizzIT

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@ composer require ulrack/transaction
### [Request](src/Component/Request.php)

A simple data access object for defining incoming web requests.
This instance requires one of the [MethodEnum](src/Common/MethodEnum.php)
This instance requires one of the [MethodEnum](src/Common/MethodEnum.php)
options to be passed.

### [Response](src/Component/Response.php)

A simple data access object for defining outgoing web responses.
A simple data access object for defining outgoing web responses.

### [Command](src/Component/Command.php)

A simple data access object for defining incoming CLI instructions.
A simple data access object for defining incoming CLI instructions.

### Factories

#### [CommandFactory](src/Factory/CommandFactory.php)

A static factory which creates [Commands](src/Component/Command.php) based on
provided arguments.
provided arguments.

The following example will generate a command object.

Expand All @@ -52,7 +52,7 @@ $subject = CommandFactory::create($_SERVER['argv']);
#### [RequestFactory](src/Factory/RequestFactory.php)

A static factory which creates [Requests](src/Transaction/Request.php) based on
provided arguments.
provided arguments.

The following example will generate a request object.

Expand All @@ -76,7 +76,7 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) and [CODE_OF_CONDUCT](CODE_OF_CONDUCT

## MIT License

Copyright (c) 2019 Jyxon
Copyright (c) 2019 GrizzIT

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/Common/CommandInterface.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Common/MethodEnum.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/
namespace Ulrack\Transaction\Common;
Expand Down
2 changes: 1 addition & 1 deletion src/Common/RequestInterface.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Common/ResponseInterface.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Component/Command.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Component/Request.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Component/Response.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Exception/HeaderNotFoundException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Exception/InvalidRequestException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
6 changes: 3 additions & 3 deletions src/Factory/CommandFactory.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand All @@ -26,7 +26,7 @@ public static function create(array $arguments): CommandInterface
)
);
}

/**
* Prepare the CLI arguments.
*
Expand Down Expand Up @@ -57,7 +57,7 @@ private static function prepareArguments(array $arguments): array
if (empty($arguments[0])
|| substr($arguments[0], 0, 1) === '-') {
$flags[] = ltrim($argument, '-');

continue;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Factory/RequestFactory.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion tests/Component/CommandTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion tests/Component/RequestTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion tests/Component/ResponseTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion tests/Factory/CommandFactoryTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion tests/Factory/RequestFactoryTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down

0 comments on commit a6901b5

Please sign in to comment.