-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.08 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
40
41
42
{
"name": "davidgoodwin/pureftp-user-admin",
"description": "Web UI for managing PureFTP users within a SQL database",
"type": "project",
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.0",
"phpunit/phpunit": "^8.5.52 | ^9.6.33",
"psalm/phar": "*"
},
"license": "GPL v2.0",
"authors": [
{
"name": "David Goodwin",
"email": "david@palepurple.co.uk"
}
],
"require": {
"php" : "^8.0",
"twig/twig": "^3.0",
"shardj/zf1-future" : "^1.14.0"
},
"autoload": {
"psr-4": {
"PureFTPAdmin\\" : "include\\"
}
},
"autoload-dev": {
"psr-4": {
"PureFTPAdmin\\Test\\": "tests\\"
}
},
"scripts": {
"lint": "@php vendor/bin/parallel-lint --exclude vendor public include",
"psalm": "@php vendor/bin/psalm.phar --show-info=false --no-cache ",
"phpunit": "@php vendor/bin/phpunit",
"test": [
"@lint",
"@psalm",
"@phpunit"
]
}
}