-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
88 lines (88 loc) · 2.43 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
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
{
"type": "library",
"name": "charcoal/app",
"description": "Charcoal application, based on Slim 3",
"keywords": ["charcoal", "framework", "slim", "cms"],
"homepage": "https://charcoal.locomotive.ca",
"license": "MIT",
"authors": [
{
"name": "Mathieu Ducharme",
"email": "[email protected]"
},
{
"name": "Locomotive",
"homepage": "https://locomotive.ca"
}
],
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "5.x-dev"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-pdo": "*",
"league/climate": "^3.2",
"league/flysystem": "^1.0",
"charcoal/cache": "^5.0",
"charcoal/config": "^5.0",
"charcoal/factory": "^5.0",
"charcoal/translator": "^5.0",
"charcoal/view": "^5.0",
"monolog/monolog": "^1.17",
"psr/http-message": "^1.0",
"psr/log": "^1.0",
"slim/slim": "^3.7",
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
"league/flysystem-aws-s3-v3": "^1.0",
"league/flysystem-memory": "^1.0",
"league/flysystem-sftp": "^1.0",
"mockery/mockery": "^1.0",
"mustache/mustache": "^2.11",
"php-coveralls/php-coveralls": "^2.2",
"phpstan/phpstan": "^1.6",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"tedivm/stash": "~0.16"
},
"autoload": {
"psr-4": {
"Charcoal\\": "src/Charcoal/"
}
},
"autoload-dev": {
"psr-4": {
"Charcoal\\Tests\\": "tests/Charcoal"
}
},
"replace": {
"locomotivemtl/charcoal-app": "*"
},
"bin": [
"bin/charcoal"
],
"scripts": {
"test": [
"@tests"
],
"tests": [
"@phplint",
"@phpcs",
"@phpstan",
"@phpunit"
],
"phplint": "find src tests -type f -name '*.php' -print0 | xargs -0 -n1 -P8 php -l | grep -v '^No syntax errors detected'; test $? -eq 1",
"phpcs": "php vendor/bin/phpcs -ps --colors src/",
"phpcbf": "php vendor/bin/phpcbf -ps --colors src/",
"phpstan": "php vendor/bin/phpstan analyze -l1 src/",
"phpunit": "php vendor/bin/phpunit --coverage-text"
},
"minimum-stability": "dev",
"prefer-stable": true
}