-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.17 KB
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "nabeghe/risma",
"description": "A lightweight, flexible string processing and template engine for PHP with function chaining support.",
"keywords": [
"helper", "library", "string", "string-helper", "string-support", "support",
"text", "text-binder", "binder", "text-morpher", "text-processing", "variable-binding",
"template-engine", "risma", "chaining", "string-manipulation", "placeholder-replacement"
],
"type": "library",
"homepage": "https://github.com/nabeghe/risma-php",
"license": "MIT",
"authors": [
{
"name": "Hadi Akbarzadeh",
"email": "elsiomcoder@gmail.com",
"homepage": "https://elatel.ir",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Nabeghe\\Risma\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"pestphp/pest": "^4.7",
"pestphp/pest-plugin": "^4.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}