-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.13 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
{
"name": "goez/b3",
"description": "A skeleton for building composer based library",
"type": "library",
"authors": [
{
"name": "Your Name",
"email": "yourname@example.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.2"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^7.0|^8.0",
"mockery/mockery": "^1.2",
"sempro/phpunit-pretty-print": "^1.2",
"friendsofphp/php-cs-fixer": "^2.16",
"php-parallel-lint/php-parallel-lint": "^1.1"
},
"suggest": {
"spatie/phpunit-watcher": "Automatically rerun PHPUnit tests when source code changes (Install globally)",
"mikey179/vfsStream": "Virtual file system to mock the real file system in unit tests.",
"orchestra/testbench": "Laravel Testing Helper for Packages Development"
},
"autoload": {
"psr-4": {
"Ns\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"git config --local core.hooksPath .git-hooks/"
]
},
"config": {
"process-timeout": 0
},
"license": "MIT"
}