-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
80 lines (80 loc) · 2.25 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
72
73
74
75
76
77
78
79
80
{
"name": "vahid-sohrabloo/pdate",
"description": "Persian date function for PHP.",
"version": "1.2.10",
"type": "library",
"keywords": ["date", "persian", "khorshidi"],
"homepage": "https://github.com/vahid-sohrabloo/Pdate",
"time": "2021-02-10",
"license": "GPL-3.0-only",
"minimum-stability": "stable",
"prefer-stable": true,
"authors":
[
{
"name": "Vahid Sohrablou",
"email": "[email protected]",
"homepage": "http://mydolphin.ir",
"role": "Developer"
}
],
"support":
{
"email": "[email protected]",
"issues": "https://github.com/vahid-sohrabloo/Pdate/issues",
"forum": "https://forum.iranphp.org/",
"wiki": "https://github.com/vahid-sohrabloo/Pdate/wiki",
"irc": "irc://irc.freenode.org/IranPHP",
"source": "https://github.com/vahid-sohrabloo/Pdate",
"docs": "https://github.com/vahid-sohrabloo/Pdate/wiki"
},
"require":
{
"php": ">=5"
},
"require-dev":
{
"friendsofphp/php-cs-fixer": "2.*",
"phpunit/phpunit": "5.7.*"
},
"autoload":
{
"exclude-from-classmap": ["tests/"]
},
"config":
{
"process-timeout": 60,
"sort-packages": true,
"archive-format": "zip",
"archive-dir": ".",
"platform-check": true,
"vendor-dir": "vendor",
"platform":
{
"php": "5.6"
}
},
"archive":
{
"exclude":
[
"*.log",
"*.cache",
"composer.lock"
]
},
"scripts":
{
"cleanup": "php vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --show-progress=estimating --allow-risky=yes",
"reformat": "php vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --show-progress=estimating --allow-risky=yes",
"test": "php vendor/phpunit/phpunit/phpunit --colors=always --testdox",
"phpunit": "php vendor/phpunit/phpunit/phpunit --colors=always --testdox"
},
"scripts-descriptions":
{
"cleanup": "Cleanup and reformat all codes.",
"reformat": "Cleanup and reformat all codes.",
"test": "Run all tests.",
"phpunit": "Run all tests."
}
}