forked from crosa7/leaf-omniglot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.5 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "leafs/lingo",
"description": "Add multi language support to your Leaf applications with ease.",
"keywords": [
"translations",
"localization",
"multi-language",
"i18n",
"internationalization",
"leaf",
"php"
],
"type": "library",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.2",
"leafs/session": "^5.0",
"leafs/fs": "^5.0",
"symfony/yaml": "*"
},
"require-dev": {
"pestphp/pest": "*",
"mockery/mockery": "*",
"leafs/alchemy": "^5.0",
"friendsofphp/php-cs-fixer": "*"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Leaf\\": "src/"
},
"files": [
"src/functions.php"
]
},
"authors": [
{
"name": "André Rosa",
"email": "crosa7000@gmail.com"
},
{
"name": "Michael Darko",
"email": "mychi.darko@gmail.com"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "@php vendor/bin/alchemy test",
"alchemy": "@php vendor/bin/alchemy all",
"lint": "@php vendor/bin/alchemy lint",
"fmt": "@php vendor/bin/alchemy fmt",
"refactor": "@php vendor/bin/alchemy refactor",
"analyse": "@php vendor/bin/alchemy analyse",
"ci": "@php vendor/bin/alchemy ci"
}
}