remove tests and useless files
This commit is contained in:
parent
7e429ff4c2
commit
e8392096ca
121
openapi.json
121
openapi.json
@ -1,121 +0,0 @@
|
|||||||
{
|
|
||||||
"openapi": "3.0.3",
|
|
||||||
"info": {
|
|
||||||
"title": "app_template",
|
|
||||||
"version": "0.0.1",
|
|
||||||
"description": "An example summary",
|
|
||||||
"license": {
|
|
||||||
"name": "agpl"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"components": {
|
|
||||||
"securitySchemes": {
|
|
||||||
"basic_auth": {
|
|
||||||
"type": "http",
|
|
||||||
"scheme": "basic"
|
|
||||||
},
|
|
||||||
"bearer_auth": {
|
|
||||||
"type": "http",
|
|
||||||
"scheme": "bearer"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"schemas": {
|
|
||||||
"OCSMeta": {
|
|
||||||
"type": "object",
|
|
||||||
"required": [
|
|
||||||
"status",
|
|
||||||
"statuscode"
|
|
||||||
],
|
|
||||||
"properties": {
|
|
||||||
"status": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"statuscode": {
|
|
||||||
"type": "integer"
|
|
||||||
},
|
|
||||||
"message": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"totalitems": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"itemsperpage": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"paths": {
|
|
||||||
"/ocs/v2.php/apps/app_template/api": {
|
|
||||||
"get": {
|
|
||||||
"operationId": "api-index",
|
|
||||||
"summary": "An example API endpoint",
|
|
||||||
"tags": [
|
|
||||||
"api"
|
|
||||||
],
|
|
||||||
"security": [
|
|
||||||
{
|
|
||||||
"bearer_auth": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"basic_auth": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"name": "OCS-APIRequest",
|
|
||||||
"in": "header",
|
|
||||||
"description": "Required to be true for the API request to pass",
|
|
||||||
"required": true,
|
|
||||||
"schema": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Data returned",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
|
||||||
"required": [
|
|
||||||
"ocs"
|
|
||||||
],
|
|
||||||
"properties": {
|
|
||||||
"ocs": {
|
|
||||||
"type": "object",
|
|
||||||
"required": [
|
|
||||||
"meta",
|
|
||||||
"data"
|
|
||||||
],
|
|
||||||
"properties": {
|
|
||||||
"meta": {
|
|
||||||
"$ref": "#/components/schemas/OCSMeta"
|
|
||||||
},
|
|
||||||
"data": {
|
|
||||||
"type": "object",
|
|
||||||
"required": [
|
|
||||||
"message"
|
|
||||||
],
|
|
||||||
"properties": {
|
|
||||||
"message": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"tags": []
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
require_once __DIR__ . '/../../../tests/bootstrap.php';
|
|
||||||
require_once __DIR__ . '/../vendor/autoload.php';
|
|
||||||
|
|
||||||
\OC_App::loadApp(OCA\AppTemplate\AppInfo\Application::APP_ID);
|
|
||||||
OC_Hook::clear();
|
|
@ -1,12 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="bootstrap.php" timeoutForSmallTests="900" timeoutForMediumTests="900" timeoutForLargeTests="900" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" cacheDirectory=".phpunit.cache">
|
|
||||||
<testsuite name="App Template Tests">
|
|
||||||
<directory suffix="Test.php">.</directory>
|
|
||||||
</testsuite>
|
|
||||||
<source>
|
|
||||||
<include>
|
|
||||||
<directory suffix=".php">../appinfo</directory>
|
|
||||||
<directory suffix=".php">../lib</directory>
|
|
||||||
</include>
|
|
||||||
</source>
|
|
||||||
</phpunit>
|
|
@ -1,19 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Controller;
|
|
||||||
|
|
||||||
use OCA\AppTemplate\AppInfo\Application;
|
|
||||||
use OCA\AppTemplate\Controller\ApiController;
|
|
||||||
use OCP\IRequest;
|
|
||||||
use PHPUnit\Framework\TestCase;
|
|
||||||
|
|
||||||
final class ApiTest extends TestCase {
|
|
||||||
public function testIndex(): void {
|
|
||||||
$request = $this->createMock(IRequest::class);
|
|
||||||
$controller = new ApiController(Application::APP_ID, $request);
|
|
||||||
|
|
||||||
$this->assertEquals($controller->index()->getData()['message'], 'Hello world!');
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
"require-dev": {
|
|
||||||
"nextcloud/coding-standard": "^1.2"
|
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"platform": {
|
|
||||||
"php": "8.1"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
162
vendor-bin/cs-fixer/composer.lock
generated
162
vendor-bin/cs-fixer/composer.lock
generated
@ -1,162 +0,0 @@
|
|||||||
{
|
|
||||||
"_readme": [
|
|
||||||
"This file locks the dependencies of your project to a known state",
|
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
|
||||||
"This file is @generated automatically"
|
|
||||||
],
|
|
||||||
"content-hash": "59bdbac023efd7059e30cfd98dc00b94",
|
|
||||||
"packages": [],
|
|
||||||
"packages-dev": [
|
|
||||||
{
|
|
||||||
"name": "kubawerlos/php-cs-fixer-custom-fixers",
|
|
||||||
"version": "v3.22.0",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/kubawerlos/php-cs-fixer-custom-fixers.git",
|
|
||||||
"reference": "8701394f0c7cd450ac4fa577d24589122c1d5d5e"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/kubawerlos/php-cs-fixer-custom-fixers/zipball/8701394f0c7cd450ac4fa577d24589122c1d5d5e",
|
|
||||||
"reference": "8701394f0c7cd450ac4fa577d24589122c1d5d5e",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"ext-filter": "*",
|
|
||||||
"ext-tokenizer": "*",
|
|
||||||
"friendsofphp/php-cs-fixer": "^3.61.1",
|
|
||||||
"php": "^7.4 || ^8.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"phpunit/phpunit": "^9.6.4 || ^10.5.29"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"PhpCsFixerCustomFixers\\": "src"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Kuba Werłos",
|
|
||||||
"email": "werlos@gmail.com"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "A set of custom fixers for PHP CS Fixer",
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/kubawerlos/php-cs-fixer-custom-fixers/issues",
|
|
||||||
"source": "https://github.com/kubawerlos/php-cs-fixer-custom-fixers/tree/v3.22.0"
|
|
||||||
},
|
|
||||||
"time": "2024-08-16T20:44:35+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "nextcloud/coding-standard",
|
|
||||||
"version": "v1.3.2",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/nextcloud/coding-standard.git",
|
|
||||||
"reference": "9c719c4747fa26efc12f2e8b21c14a9a75c6ba6d"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/nextcloud/coding-standard/zipball/9c719c4747fa26efc12f2e8b21c14a9a75c6ba6d",
|
|
||||||
"reference": "9c719c4747fa26efc12f2e8b21c14a9a75c6ba6d",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"kubawerlos/php-cs-fixer-custom-fixers": "^3.22",
|
|
||||||
"php": "^7.3|^8.0",
|
|
||||||
"php-cs-fixer/shim": "^3.17"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Nextcloud\\CodingStandard\\": "src"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Christoph Wurst",
|
|
||||||
"email": "christoph@winzerhof-wurst.at"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Nextcloud coding standards for the php cs fixer",
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/nextcloud/coding-standard/issues",
|
|
||||||
"source": "https://github.com/nextcloud/coding-standard/tree/v1.3.2"
|
|
||||||
},
|
|
||||||
"time": "2024-10-14T16:49:05+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "php-cs-fixer/shim",
|
|
||||||
"version": "v3.64.0",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/PHP-CS-Fixer/shim.git",
|
|
||||||
"reference": "81ccfd24baf3a10810dab1152c403981a790b837"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/PHP-CS-Fixer/shim/zipball/81ccfd24baf3a10810dab1152c403981a790b837",
|
|
||||||
"reference": "81ccfd24baf3a10810dab1152c403981a790b837",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"ext-json": "*",
|
|
||||||
"ext-tokenizer": "*",
|
|
||||||
"php": "^7.4 || ^8.0"
|
|
||||||
},
|
|
||||||
"replace": {
|
|
||||||
"friendsofphp/php-cs-fixer": "self.version"
|
|
||||||
},
|
|
||||||
"suggest": {
|
|
||||||
"ext-dom": "For handling output formats in XML",
|
|
||||||
"ext-mbstring": "For handling non-UTF8 characters."
|
|
||||||
},
|
|
||||||
"bin": [
|
|
||||||
"php-cs-fixer",
|
|
||||||
"php-cs-fixer.phar"
|
|
||||||
],
|
|
||||||
"type": "application",
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Fabien Potencier",
|
|
||||||
"email": "fabien@symfony.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Dariusz Rumiński",
|
|
||||||
"email": "dariusz.ruminski@gmail.com"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "A tool to automatically fix PHP code style",
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/PHP-CS-Fixer/shim/issues",
|
|
||||||
"source": "https://github.com/PHP-CS-Fixer/shim/tree/v3.64.0"
|
|
||||||
},
|
|
||||||
"time": "2024-08-30T23:10:11+00:00"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"aliases": [],
|
|
||||||
"minimum-stability": "stable",
|
|
||||||
"stability-flags": [],
|
|
||||||
"prefer-stable": false,
|
|
||||||
"prefer-lowest": false,
|
|
||||||
"platform": [],
|
|
||||||
"platform-dev": [],
|
|
||||||
"platform-overrides": {
|
|
||||||
"php": "8.1"
|
|
||||||
},
|
|
||||||
"plugin-api-version": "2.6.0"
|
|
||||||
}
|
|
@ -1,16 +0,0 @@
|
|||||||
{
|
|
||||||
"repositories": [
|
|
||||||
{
|
|
||||||
"type": "vcs",
|
|
||||||
"url": "https://github.com/nextcloud/openapi-extractor"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"require-dev": {
|
|
||||||
"nextcloud/openapi-extractor": "dev-main"
|
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"platform": {
|
|
||||||
"php": "8.1"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
254
vendor-bin/openapi-extractor/composer.lock
generated
254
vendor-bin/openapi-extractor/composer.lock
generated
@ -1,254 +0,0 @@
|
|||||||
{
|
|
||||||
"_readme": [
|
|
||||||
"This file locks the dependencies of your project to a known state",
|
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
|
||||||
"This file is @generated automatically"
|
|
||||||
],
|
|
||||||
"content-hash": "cc4604e4c3d0f17f3feec0fe94971ff6",
|
|
||||||
"packages": [],
|
|
||||||
"packages-dev": [
|
|
||||||
{
|
|
||||||
"name": "adhocore/cli",
|
|
||||||
"version": "v1.7.1",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/adhocore/php-cli.git",
|
|
||||||
"reference": "3fde60a838912e71c82ed0f48048685dc32dbc77"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/adhocore/php-cli/zipball/3fde60a838912e71c82ed0f48048685dc32dbc77",
|
|
||||||
"reference": "3fde60a838912e71c82ed0f48048685dc32dbc77",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=8.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"phpunit/phpunit": "^9.0"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Ahc\\Cli\\": "src/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Jitendra Adhikari",
|
|
||||||
"email": "jiten.adhikary@gmail.com"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Command line interface library for PHP",
|
|
||||||
"keywords": [
|
|
||||||
"argument-parser",
|
|
||||||
"argv-parser",
|
|
||||||
"cli",
|
|
||||||
"cli-action",
|
|
||||||
"cli-app",
|
|
||||||
"cli-color",
|
|
||||||
"cli-option",
|
|
||||||
"cli-writer",
|
|
||||||
"command",
|
|
||||||
"console",
|
|
||||||
"console-app",
|
|
||||||
"php-cli",
|
|
||||||
"php8",
|
|
||||||
"stream-input",
|
|
||||||
"stream-output"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/adhocore/php-cli/issues",
|
|
||||||
"source": "https://github.com/adhocore/php-cli/tree/v1.7.1"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://paypal.me/ji10",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/adhocore",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2024-03-28T08:30:12+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "nextcloud/openapi-extractor",
|
|
||||||
"version": "dev-main",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/nextcloud/openapi-extractor.git",
|
|
||||||
"reference": "50acc06715d9ac182e40d31d19aa3e4de517e1da"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/nextcloud/openapi-extractor/zipball/50acc06715d9ac182e40d31d19aa3e4de517e1da",
|
|
||||||
"reference": "50acc06715d9ac182e40d31d19aa3e4de517e1da",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"adhocore/cli": "^1.7",
|
|
||||||
"ext-simplexml": "*",
|
|
||||||
"nikic/php-parser": "^5.0",
|
|
||||||
"php": "^8.1",
|
|
||||||
"phpstan/phpdoc-parser": "^1.28"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"nextcloud/coding-standard": "^1.2"
|
|
||||||
},
|
|
||||||
"default-branch": true,
|
|
||||||
"bin": [
|
|
||||||
"generate-spec",
|
|
||||||
"merge-specs"
|
|
||||||
],
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"OpenAPIExtractor\\": "src"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"lint": [
|
|
||||||
"find . -name \\*.php -not -path './tests/*' -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l && php -l generate-spec && php -l merge-specs"
|
|
||||||
],
|
|
||||||
"cs:check": [
|
|
||||||
"php-cs-fixer fix --dry-run --diff"
|
|
||||||
],
|
|
||||||
"cs:fix": [
|
|
||||||
"php-cs-fixer fix"
|
|
||||||
],
|
|
||||||
"test:unit": [
|
|
||||||
"cd tests && ../generate-spec"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/nextcloud/openapi-extractor/tree/main",
|
|
||||||
"issues": "https://github.com/nextcloud/openapi-extractor/issues"
|
|
||||||
},
|
|
||||||
"time": "2024-04-15T07:08:14+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "nikic/php-parser",
|
|
||||||
"version": "v5.0.2",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/nikic/PHP-Parser.git",
|
|
||||||
"reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13",
|
|
||||||
"reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"ext-ctype": "*",
|
|
||||||
"ext-json": "*",
|
|
||||||
"ext-tokenizer": "*",
|
|
||||||
"php": ">=7.4"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"ircmaxell/php-yacc": "^0.0.7",
|
|
||||||
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
|
|
||||||
},
|
|
||||||
"bin": [
|
|
||||||
"bin/php-parse"
|
|
||||||
],
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-master": "5.0-dev"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"PhpParser\\": "lib/PhpParser"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"BSD-3-Clause"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Nikita Popov"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "A PHP parser written in PHP",
|
|
||||||
"keywords": [
|
|
||||||
"parser",
|
|
||||||
"php"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/nikic/PHP-Parser/issues",
|
|
||||||
"source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2"
|
|
||||||
},
|
|
||||||
"time": "2024-03-05T20:51:40+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "phpstan/phpdoc-parser",
|
|
||||||
"version": "1.28.0",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/phpstan/phpdoc-parser.git",
|
|
||||||
"reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb",
|
|
||||||
"reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": "^7.2 || ^8.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"doctrine/annotations": "^2.0",
|
|
||||||
"nikic/php-parser": "^4.15",
|
|
||||||
"php-parallel-lint/php-parallel-lint": "^1.2",
|
|
||||||
"phpstan/extension-installer": "^1.0",
|
|
||||||
"phpstan/phpstan": "^1.5",
|
|
||||||
"phpstan/phpstan-phpunit": "^1.1",
|
|
||||||
"phpstan/phpstan-strict-rules": "^1.0",
|
|
||||||
"phpunit/phpunit": "^9.5",
|
|
||||||
"symfony/process": "^5.2"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"PHPStan\\PhpDocParser\\": [
|
|
||||||
"src/"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"description": "PHPDoc parser with support for nullable, intersection and generic types",
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/phpstan/phpdoc-parser/issues",
|
|
||||||
"source": "https://github.com/phpstan/phpdoc-parser/tree/1.28.0"
|
|
||||||
},
|
|
||||||
"time": "2024-04-03T18:51:33+00:00"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"aliases": [],
|
|
||||||
"minimum-stability": "stable",
|
|
||||||
"stability-flags": {
|
|
||||||
"nextcloud/openapi-extractor": 20
|
|
||||||
},
|
|
||||||
"prefer-stable": false,
|
|
||||||
"prefer-lowest": false,
|
|
||||||
"platform": [],
|
|
||||||
"platform-dev": [],
|
|
||||||
"platform-overrides": {
|
|
||||||
"php": "8.1"
|
|
||||||
},
|
|
||||||
"plugin-api-version": "2.6.0"
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
"require-dev": {
|
|
||||||
"phpunit/phpunit": "^10.5"
|
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"platform": {
|
|
||||||
"php": "8.1"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
1646
vendor-bin/phpunit/composer.lock
generated
1646
vendor-bin/phpunit/composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
"require-dev": {
|
|
||||||
"vimeo/psalm": "^5.23"
|
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"platform": {
|
|
||||||
"php": "8.1"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
2103
vendor-bin/psalm/composer.lock
generated
2103
vendor-bin/psalm/composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"require-dev": {
|
|
||||||
"rector/rector": "^1.2"
|
|
||||||
}
|
|
||||||
}
|
|
136
vendor-bin/rector/composer.lock
generated
136
vendor-bin/rector/composer.lock
generated
@ -1,136 +0,0 @@
|
|||||||
{
|
|
||||||
"_readme": [
|
|
||||||
"This file locks the dependencies of your project to a known state",
|
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
|
||||||
"This file is @generated automatically"
|
|
||||||
],
|
|
||||||
"content-hash": "eb58f3061bde78d58fa424c73947025f",
|
|
||||||
"packages": [],
|
|
||||||
"packages-dev": [
|
|
||||||
{
|
|
||||||
"name": "phpstan/phpstan",
|
|
||||||
"version": "1.12.4",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/phpstan/phpstan.git",
|
|
||||||
"reference": "ffa517cb918591b93acc9b95c0bebdcd0e4538bd"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/ffa517cb918591b93acc9b95c0bebdcd0e4538bd",
|
|
||||||
"reference": "ffa517cb918591b93acc9b95c0bebdcd0e4538bd",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": "^7.2|^8.0"
|
|
||||||
},
|
|
||||||
"conflict": {
|
|
||||||
"phpstan/phpstan-shim": "*"
|
|
||||||
},
|
|
||||||
"bin": [
|
|
||||||
"phpstan",
|
|
||||||
"phpstan.phar"
|
|
||||||
],
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"files": [
|
|
||||||
"bootstrap.php"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"description": "PHPStan - PHP Static Analysis Tool",
|
|
||||||
"keywords": [
|
|
||||||
"dev",
|
|
||||||
"static analysis"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"docs": "https://phpstan.org/user-guide/getting-started",
|
|
||||||
"forum": "https://github.com/phpstan/phpstan/discussions",
|
|
||||||
"issues": "https://github.com/phpstan/phpstan/issues",
|
|
||||||
"security": "https://github.com/phpstan/phpstan/security/policy",
|
|
||||||
"source": "https://github.com/phpstan/phpstan-src"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://github.com/ondrejmirtes",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/phpstan",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2024-09-19T07:58:01+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "rector/rector",
|
|
||||||
"version": "1.2.5",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/rectorphp/rector.git",
|
|
||||||
"reference": "e98aa793ca3fcd17e893cfaf9103ac049775d339"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/rectorphp/rector/zipball/e98aa793ca3fcd17e893cfaf9103ac049775d339",
|
|
||||||
"reference": "e98aa793ca3fcd17e893cfaf9103ac049775d339",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": "^7.2|^8.0",
|
|
||||||
"phpstan/phpstan": "^1.12.2"
|
|
||||||
},
|
|
||||||
"conflict": {
|
|
||||||
"rector/rector-doctrine": "*",
|
|
||||||
"rector/rector-downgrade-php": "*",
|
|
||||||
"rector/rector-phpunit": "*",
|
|
||||||
"rector/rector-symfony": "*"
|
|
||||||
},
|
|
||||||
"suggest": {
|
|
||||||
"ext-dom": "To manipulate phpunit.xml via the custom-rule command"
|
|
||||||
},
|
|
||||||
"bin": [
|
|
||||||
"bin/rector"
|
|
||||||
],
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"files": [
|
|
||||||
"bootstrap.php"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"description": "Instant Upgrade and Automated Refactoring of any PHP code",
|
|
||||||
"keywords": [
|
|
||||||
"automation",
|
|
||||||
"dev",
|
|
||||||
"migration",
|
|
||||||
"refactoring"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/rectorphp/rector/issues",
|
|
||||||
"source": "https://github.com/rectorphp/rector/tree/1.2.5"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://github.com/tomasvotruba",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2024-09-08T17:43:24+00:00"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"aliases": [],
|
|
||||||
"minimum-stability": "stable",
|
|
||||||
"stability-flags": [],
|
|
||||||
"prefer-stable": false,
|
|
||||||
"prefer-lowest": false,
|
|
||||||
"platform": [],
|
|
||||||
"platform-dev": [],
|
|
||||||
"plugin-api-version": "2.6.0"
|
|
||||||
}
|
|
27
webpack.js
27
webpack.js
@ -1,27 +0,0 @@
|
|||||||
const webpackConfig = require('@nextcloud/webpack-vue-config')
|
|
||||||
const ESLintPlugin = require('eslint-webpack-plugin')
|
|
||||||
const StyleLintPlugin = require('stylelint-webpack-plugin')
|
|
||||||
const path = require('path')
|
|
||||||
|
|
||||||
webpackConfig.entry = {
|
|
||||||
main: { import: path.join(__dirname, 'src', 'main.js'), filename: 'main.js' },
|
|
||||||
}
|
|
||||||
|
|
||||||
webpackConfig.plugins.push(
|
|
||||||
new ESLintPlugin({
|
|
||||||
extensions: ['js', 'vue'],
|
|
||||||
files: 'src',
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
webpackConfig.plugins.push(
|
|
||||||
new StyleLintPlugin({
|
|
||||||
files: 'src/**/*.{css,scss,vue}',
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
|
|
||||||
webpackConfig.module.rules.push({
|
|
||||||
test: /\.svg$/i,
|
|
||||||
type: 'asset/source',
|
|
||||||
})
|
|
||||||
|
|
||||||
module.exports = webpackConfig
|
|
Loading…
Reference in New Issue
Block a user