Skip to content

Commit

Permalink
Copy initial code from yiisoft/yii-web (yiisoft#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
vjik committed Sep 11, 2020
1 parent bce23be commit bbbb27e
Show file tree
Hide file tree
Showing 9 changed files with 1,383 additions and 17 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# _____ Change Log
# Yii Cookies Change Log

## 1.0.0 under development

Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
<a href="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/yiisoft" target="_blank">
<img src="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/yiisoft.png" height="100px">
</a>
<h1 align="center">Yii _____</h1>
<h1 align="center">Yii Cookies</h1>
<br>
</p>

[![Latest Stable Version](https://poser.pugx.org/yiisoft/_____/v/stable.png)](https://packagist.org/packages/yiisoft/_____)
[![Total Downloads](https://poser.pugx.org/yiisoft/_____/downloads.png)](https://packagist.org/packages/yiisoft/_____)
[![Build status](https://github.com/yiisoft/_____/workflows/build/badge.svg)](https://github.com/yiisoft/_____/actions?query=workflow%3Abuild)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/yiisoft/_____/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/yiisoft/_____/?branch=master)
[![Code Coverage](https://scrutinizer-ci.com/g/yiisoft/_____/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/yiisoft/_____/?branch=master)
[![Mutation testing badge](https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fyiisoft%2F_____%2Fmaster)](https://dashboard.stryker-mutator.io/reports/github.com/yiisoft/_____/master)
[![static analysis](https://github.com/yiisoft/_____/workflows/static%20analysis/badge.svg)](https://github.com/yiisoft/_____/actions?query=workflow%3A%22static+analysis%22)
[![Latest Stable Version](https://poser.pugx.org/yiisoft/cookies/v/stable.png)](https://packagist.org/packages/yiisoft/cookies)
[![Total Downloads](https://poser.pugx.org/yiisoft/cookies/downloads.png)](https://packagist.org/packages/yiisoft/cookies)
[![Build status](https://github.com/yiisoft/cookies/workflows/build/badge.svg)](https://github.com/yiisoft/cookies/actions?query=workflow%3Abuild)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/yiisoft/cookies/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/yiisoft/cookies/?branch=master)
[![Code Coverage](https://scrutinizer-ci.com/g/yiisoft/cookies/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/yiisoft/cookies/?branch=master)
[![Mutation testing badge](https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fyiisoft%2Fcookies%2Fmaster)](https://dashboard.stryker-mutator.io/reports/github.com/yiisoft/cookies/master)
[![static analysis](https://github.com/yiisoft/cookies/workflows/static%20analysis/badge.svg)](https://github.com/yiisoft/cookies/actions?query=workflow%3A%22static+analysis%22)

The package ...

Expand All @@ -21,7 +21,7 @@ The package ...
The package could be installed with composer:

```
composer install yiisoft/_____
composer install yiisoft/cookies
```

## General usage
Expand Down
19 changes: 12 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,42 @@
{
"name": "yiisoft/_____",
"name": "yiisoft/cookies",
"type": "library",
"description": "_____",
"keywords": [
"_____"
"cookies",
"cookie"
],
"homepage": "https://www.yiiframework.com/",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/_____/issues?state=open",
"issues": "https://github.com/yiisoft/cookies/issues?state=open",
"forum": "https://www.yiiframework.com/forum/",
"wiki": "https://www.yiiframework.com/wiki/",
"irc": "irc:https://irc.freenode.net/yii",
"source": "https://github.com/yiisoft/_____"
"source": "https://github.com/yiisoft/cookies"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4|^8.0"
"php": "^7.4|^8.0",
"psr/http-message": "^1.0",
"psr/http-message-implementation": "1.0",
"yiisoft/http": "^1.0"
},
"require-dev": {
"infection/infection": "^0.16.3",
"nyholm/psr7": "^1.3",
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "^3.15"
},
"autoload": {
"psr-4": {
"Yiisoft\\_____\\": "src"
"Yiisoft\\Cookies\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yiisoft\\_____\\Tests\\": "tests"
"Yiisoft\\Cookies\\Tests\\": "tests"
}
},
"extra": {
Expand Down
Empty file removed src/.gitkeep
Empty file.
Loading

0 comments on commit bbbb27e

Please sign in to comment.