-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.98 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.98 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "phug/split",
"type": "library",
"keywords": ["phug", "monorepo", "multipackages", "split"],
"description": "Pug (ex-Jade) facade engine for PHP, HTML template engine structured by indentation",
"license": "MIT",
"homepage": "https://phug-lang.com",
"authors": [
{
"name": "KyleKatarn",
"email": "jade-php@selfbuild.fr",
"homepage": "http://github.com/kylekatarnls"
}
],
"support": {
"email": "support@phug-lang.com",
"issues": "https://github.com/phug-php/phug/issues",
"source": "https://github.com/phug-php/phug",
"docs": "https://phug-lang.com/docs"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"simple-cli/simple-cli": "^1.6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15.0 || ^3.23.0",
"nette/utils": "^3.2.10 || ^4.1.3",
"phan/phan": "^3.2.10 || ^5.4.2",
"phpunit/phpunit": "^8.5.52 || ^9.6.34",
"phpmd/phpmd": "^2.13.0",
"phpstan/phpstan": "^0.11.15 || ^1.10.29",
"squizlabs/php_codesniffer": "^3.7.2",
"vimeo/psalm": "^4.30.0 || ^5.14.1 || ^6.15.1"
},
"autoload": {
"psr-4": {
"Phug\\": "./src/Phug/"
}
},
"autoload-dev": {
"psr-4": {
"Phug\\Tests\\": "./tests/Phug/"
}
},
"bin": ["bin/split"],
"scripts": {
"test": [
"@phpunit",
"@style-check"
],
"style-check": [
"@phpcs",
"@phpcsf",
"@phpstan",
"@phpmd",
"@psalm"
],
"phpunit": "phpunit --verbose",
"phan": "phan",
"phpcs": "phpcs src tests",
"phpcsf": "php-cs-fixer fix -v --diff --dry-run",
"phpstan": "phpstan analyse src tests",
"phpmd": "phpmd src text phpmd.xml",
"psalm": "psalm"
}
}