-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 2.78 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 2.78 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "foundation/proton",
"description": "Proton Site Builder",
"keywords": ["framework", "foundation", "cli", "static site", "twig", "cms"],
"homepage": "https://github.com/foundation/proton",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/foundation/proton/issues",
"source": "https://github.com/foundation/proton"
},
"authors": [
{
"name": "Joe Workman",
"email": "joe@foundationcss.com"
}
],
"require": {
"php": ">=8.4",
"gajus/dindent": "^2.0",
"laravel-zero/framework": "^12.0",
"laravel-zero/phar-updater": "^1.3",
"michelf/php-markdown": "^2.0",
"samdark/sitemap": "^2.4",
"spatie/ray": "^1.32",
"symfony/yaml": "^8.0",
"tempest/highlight": "^2.0",
"twig/markdown-extra": "^3.10",
"twig/twig": "^3.10",
"wyrihaximus/html-compress": "^4.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.6",
"overtrue/phplint": "^9.0",
"pestphp/pest": "^4.0",
"phpmd/phpmd": "^2.12",
"phpstan/phpstan": "^2.0",
"rector/rector": "^2.1",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^4.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"cs": "php-cs-fixer fix --dry-run --format=txt --verbose --diff --config=.php-cs-fixer.php",
"cs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php",
"lint": "phplint ./ --exclude=vendor --no-interaction --no-cache",
"stan": "phpstan analyse -c phpstan.neon --no-ansi --no-progress --memory-limit 2G",
"md:app": "phpmd app ansi phpmd.xml",
"md:tests": "phpmd tests ansi phpmd.xml",
"md": [
"@md:app",
"@md:tests"
],
"sniffer:check": "phpcs --standard=phpcbf.xml",
"sniffer:fix": "phpcbf --standard=phpcbf.xml",
"rector": "rector --dry-run",
"rector:fix": "rector",
"test": "vendor/bin/pest",
"test:filter": "vendor/bin/pest --filter",
"quality": [
"@cs",
"@stan",
"@rector",
"@sniffer:check"
],
"clean": [
"@rector:fix",
"@cs:fix",
"@sniffer:fix"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/proton"]
}