-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.39 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.39 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
{
"$schema": "https://raw.githubusercontent.com/composer/composer/master/res/composer-schema.json",
"name": "cakmoel/scriptlog",
"type": "project",
"description": "Just another blog engine",
"license": "MIT",
"authors": [
{
"name": "M Noermoehammad",
"email": "alanmoehammad@gmail.com",
"homepage": "https://github.com/cakmoel",
"role": "Developer"
}
],
"config": {
"platform-check": false,
"platform": {
"php": "7.4.33"
},
"sort-packages": true
},
"require": {
"php": ">=7.4",
"catfan/medoo": "^2.1",
"defuse/php-encryption": "^2.2",
"egulias/email-validator": "^2.1",
"filp/whoops": "^2.9",
"intervention/image": "^2.5",
"ircmaxell/random-lib": "^1.2",
"laminas/laminas-crypt": "^3.3",
"laminas/laminas-escaper": "^2.12",
"laminas/laminas-feed": "^2.17",
"melbahja/seo": "^2.0",
"psr/log": "^1.1",
"sinergi/browser-detector": "^6.1",
"symfony/mailer": "^5.4",
"vlucas/phpdotenv": "^5.6",
"voku/anti-xss": "^4.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpmetrics/phpmetrics": "^2.9",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"classmap": ["src/lib/"]
},
"scripts": {
"metrics": "php bin/phpmetrics",
"phpstan": "phpstan analyse src --level 0 --memory-limit=1G",
"phpstan:strict": "phpstan analyse src --level 1 --memory-limit=1G",
"phpcs": "phpcs --standard=phpcs.xml src/",
"phpcbf": "phpcbf --standard=phpcs.xml src/",
"csfix": "php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run --diff",
"csfix:apply": "php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"test": "phpunit --configuration phpunit.xml",
"test:coverage": "phpunit --configuration phpunit.xml --coverage-html build/coverage",
"analyse": [
"@phpstan",
"@phpcs"
],
"quality": [
"@phpstan",
"@phpcs",
"@metrics"
],
"build": [
"@phpstan:strict",
"@phpcs",
"@test"
]
}
}