Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2021-03-12 13:08:55 +01:00
Родитель c2a3f18615
Коммит 12cb7808f1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7424F1874854DF23
4 изменённых файлов: 58 добавлений и 4 удалений

Просмотреть файл

@ -8,6 +8,7 @@ krankerl.toml
Makefile
.nextcloudignore
phpunit.*
.php_cs.dist
screenshots
.scrutinizer.yml
tests

Просмотреть файл

@ -1,6 +1,7 @@
{
"require": {
"vgrem/php-spo": "^2.2"
"vgrem/php-spo": "^2.2",
"cweagans/composer-patches": "^1.7"
},
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --diff",
@ -9,5 +10,12 @@
},
"require-dev": {
"nextcloud/coding-standard": "^0.5.0"
}
},
"extra": {
"patches": {
"vgrem/php-spo": {
"Lowercase the Accept header value": "https://github.com/blizzz/phpSPO/commit/6025be531c764ec0d4d0545fc0293b6f91d72726.patch"
}
}
}
}

46
composer.lock сгенерированный
Просмотреть файл

@ -4,8 +4,52 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "199441ac87f0f2297b84017b0f9c31b4",
"content-hash": "f3a25b3516c6170afcf6101e01bded71",
"packages": [
{
"name": "cweagans/composer-patches",
"version": "1.7.0",
"source": {
"type": "git",
"url": "https://github.com/cweagans/composer-patches.git",
"reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf",
"reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf",
"shasum": ""
},
"require": {
"composer-plugin-api": "^1.0 || ^2.0",
"php": ">=5.3.0"
},
"require-dev": {
"composer/composer": "~1.0 || ~2.0",
"phpunit/phpunit": "~4.6"
},
"type": "composer-plugin",
"extra": {
"class": "cweagans\\Composer\\Patches"
},
"autoload": {
"psr-4": {
"cweagans\\Composer\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Cameron Eagans",
"email": "me@cweagans.net"
}
],
"description": "Provides a way to patch Composer packages.",
"time": "2020-09-30T17:56:20+00:00"
},
{
"name": "vgrem/php-spo",
"version": "v2.2.5",

Просмотреть файл

@ -1,5 +1,6 @@
[package]
before_cmds = [
"composer install"
"composer install --no-dev",
"composer remove --update-no-dev cweagans/composer-patches"
]