-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
66 lines (66 loc) · 1.73 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
{
"name": "phpexperts/contracts-tracker",
"description": "Laravel package for easily and quickly getting contracts signed by people.",
"keywords": [
"contracts",
"documents tracker",
"compliance",
"contract signer",
"docusign",
"laravel package"
],
"homepage": "https://www.phpexperts.pro/",
"license": "MIT",
"authors": [
{
"name": "PHP Experts, Inc.",
"homepage": "https://www.phpexperts.pro/"
},
{
"name": "Theodore R. Smith",
"homepage": "https://www.linkedin.com/in/tedrsmith"
}
],
"require": {
"php": "^7.3|8.*",
"ext-json": "*",
"illuminate/support": ">=6.0",
"erusev/parsedown": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "7.*|8.*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "*",
"symfony/var-dumper": "*",
"povils/phpmnd": "*",
"laravel/framework": "6.*"
},
"autoload": {
"psr-4": {
"PHPExperts\\ContractsTracker\\Database\\Migrations\\" : "database/migrations/",
"PHPExperts\\ContractsTracker\\" : "src/"
}
},
"autoload-dev": {
"psr-4": { "PHPExperts\\ContractsTracker\\Tests\\" : "tests/" }
},
"config": {
"classmap-authoritative": true,
"preferred-install": "dist",
"platform": {
"php": "7.3.0"
}
},
"extra": {
"laravel": {
"providers": [
"PHPExperts\\ContractsTracker\\ContractsTrackerServiceProvider"
]
}
},
"scripts": {
"post-create-project-cmd": [
"php install.php"
]
}
}