Skip to content

Releases: cable8mm/good-code-parser

v1.0.3

09 Mar 10:39
59f5a00
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.2...v1.0.3

v1.0.2

09 Mar 10:30
a31c329
Compare
Choose a tag to compare

What's Changed

  • Add classes and methods comments for API Documentation by @cable8mm in #9
  • Organizing various document wordings by @cable8mm in #10

Full Changelog: v1.0.1...v1.0.2

v1.0.1

03 Mar 10:01
28fe3c5
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.0...v1.0.1

v1.0.0

03 Mar 08:29
bb39ebb
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.8...v1.0.0

v0.8.0

19 Jul 08:46
7c90401
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.7.1...v0.8

v0.7.1

09 Nov 00:31
a7d5169
Compare
Choose a tag to compare

Feature : Setcode default value. The patch apply setcode default value.

    public function test_세트코드_축약버전_파싱이_되는지()
    {
        // Arrange
        $input = 'set107253x1ZZ102257ZZ104128x2';
        $expect = [
            '107253' => 1,
            '102257' => 1, // 이 값은 코드에 없기 때문에 1(default value)로 처리됨.
            '104128' => 2,
        ];

        // Act
        $parsed = (new GoodCodeParser($input))->with(SetGood::class)->get();

        // Assert
        $this->assertEquals($parsed, $expect);
    }

v0.7.0

22 May 09:31
Compare
Choose a tag to compare

Launch code parser for Ecommerce