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

Exclude non-prod files from shipped archive #55

Merged
merged 4 commits into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@
/vendor export-ignore
.gitattributes export-ignore
.gitignore export-ignore
/.github export-ignore
/tests export-ignore
phpstan.neon export-ignore
phpunit.xml export-ignore
sonar-project.properties export-ignore
2 changes: 1 addition & 1 deletion .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PHP Serialization JSON
name: Build

on:
workflow_dispatch:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [1.0.1]

### Changed
- Exclude non-prod files from shipped archive

## [1.0.0] - 2023-11-01

### Changed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Kiota JSON Serialization Library for PHP

[![Build Status](https://travis-ci.org/microsoft/kiota-serialization-json-php.svg?branch=main)](https://travis-ci.org/microsoft/kiota-serialization-json-php)
![Build Status](https://github.com/microsoft/kiota-serialization-json-php/actions/workflows/pr-validation.yml/badge.svg)
[![Latest Stable Version](https://poser.pugx.org/microsoft/kiota-serialization-json/version)](https://packagist.org/packages/microsoft/kiota-serialization-json)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=microsoft_kiota-serialization-json-php&metric=coverage)](https://sonarcloud.io/dashboard?id=microsoft_kiota-serialization-json-php)

Expand All @@ -17,7 +17,7 @@ run `composer require microsoft/kiota-serialization-json` or add the following t
```Shell
{
"require": {
"microsoft/kiota-serialization-json": "^0.1.0"
"microsoft/kiota-serialization-json": "^1.0.1"
}
}
```
Expand Down
10 changes: 7 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@
"license": ["MIT"],
"autoload": {
"psr-4": {
"Microsoft\\Kiota\\Serialization\\Json\\": "src",
"Microsoft\\Kiota\\Serialization\\Tests\\": "tests"
"Microsoft\\Kiota\\Serialization\\Json\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Microsoft\\Kiota\\Serialization\\Tests\\": "tests"
}
},
"require": {
"microsoft/kiota-abstractions": "^1.0.0",
"microsoft/kiota-abstractions": "^1.0.2",
"guzzlehttp/psr7": "^1.6 || ^2",
"php": "^7.4 || ^8",
"ext-json": "*"
Expand Down
2 changes: 1 addition & 1 deletion src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

final class Constants
{
public const VERSION = '1.0.0';
public const VERSION = '1.0.1';
}