-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
executable file
·49 lines (49 loc) · 1.11 KB
/
composer.json
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
43
44
45
46
47
48
49
{
"name": "raudius/files_scripts",
"type": "project",
"license": "AGPL",
"authors": [
{
"name": "Raul Ferreira Fuentes",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"ext-json": "*",
"ext-lua": "*",
"ext-curl": "*",
"ext-intl": "*",
"mustache/mustache": "^2.14",
"php-ffmpeg/php-ffmpeg": "0.19.0",
"mikehaertl/php-shellcommand": "^1",
"raudius/phpdf": "^1.0.3",
"raudius/luar": "0.1.4"
},
"require-dev": {
"phpunit/phpunit": "^9.3.11",
"behat/behat": "^3.8",
"guzzlehttp/guzzle": "^7.2",
"nextcloud/coding-standard": "^1.0.0",
"composer/class-map-generator": "^1.0",
"friendsofphp/php-cs-fixer": "^3.11"
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "8.0"
}
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"test:unit": "phpunit -c tests/phpunit.xml"
},
"autoload-dev": {
"classmap": [
"lib/", "tests/unit"
]
}
}