-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.07 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
{
"name": "padosoft/presenty",
"description": "Presentation and Formatting helper with nice fluent interface.",
"keywords": [
"padosoft",
"presenty",
"format",
"presenter",
"fluent interface"
],
"homepage": "https://github.com/padosoft/presenty",
"license": "MIT",
"authors": [
{
"name": "Lorenzo Padovani",
"email": "[email protected]",
"homepage": "https://www.padosoft.com",
"role": "Developer"
}
],
"require": {
"php" : ">=7.1.0",
"padosoft/support": "^3.0.4"
},
"require-dev": {
"phpunit/phpunit": "^5.7.27|^6.5.14|^7.5.20|^8.5.26|^9.5.20|^10.0",
"padosoft/test": "^2.1"
},
"autoload": {
"psr-4": {
"Padosoft\\Presenty\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Padosoft\\Presenty\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}