Welcome to mirror list, hosted at ThFree Co, Russian Federation.

composer.json - github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5b7144770a57927f065c99552c71ae47835dc96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
	"name": "nextcloud/polls",
	"type": "project",
	"license": "AGPLv3",
	"authors": [
		{
			"name": "Vinzenz Rosenkranz"
		},
		{
			"name": "Kai Schröer"
		},
		{
			"name": "René Gieling"
		}
	],
	"config": {
      "platform": {
        "php": "7.4.0"
      }
    },
	"autoload-dev": {
		"psr-4": {
			"OCA\\Polls\\Tests\\": "tests/"
		}
	},
	"require-dev": {
		"christophwurst/nextcloud": "^20.0",
		"phpunit/phpunit": "^8.5",
		"league/factory-muffin": "^3.0",
		"league/factory-muffin-faker": "^2.0",
		"nextcloud/coding-standard": "^0.5.0",
		"doctrine/orm": "^2.7",
		"vimeo/psalm": "^4.3"
	},
	"scripts": {
		"cs:check": "php-cs-fixer fix --dry-run --diff",
		"cs:fix": "php-cs-fixer fix"
	}
}