-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.99 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
{
"name": "phonyland/language-cli",
"description": "\ud83d\udcbb Language CLI for \ud83d\ude43 Phony Framework",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Yunus Emre Delig\u00f6z",
"email": "ye@deligoz.me"
}
],
"homepage": "http://phony.land",
"support": {
"issues": "https://github.com/phonyland/language-cli/issues",
"source": "https://github.com/phonyland/language-cli"
},
"require": {
"php": "^8.0"
},
"require-dev": {
"laminas/laminas-text": "^2.8",
"laravel-zero/framework": "^8.8",
"mockery/mockery": "^1.4.3",
"pestphp/pest": "^1.3",
"phonyland/language-model": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"bin": [
"builds/phony-language-cli"
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"post-autoload-dump": [
"@normalize",
"@validate",
"@thanks"
],
"lint": "php-cs-fixer fix -v",
"normalize": "@composer normalize --ansi --no-interaction --quiet",
"test": [
"@test:lint",
"@test:types",
"@test:unit",
"@test:mutations"
],
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:mutations": "infection --test-framework=pest --show-mutations",
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test:unit": "pest --colors=always",
"thanks": "@composer thanks --ansi --no-interaction --quiet",
"validate": "@composer validate --strict --ansi --no-interaction"
}
}