generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.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": "permafrost-dev/code-snippets",
"description": "Easily work with code snippets in PHP",
"keywords": [
"permafrost",
"code",
"snippets",
"code-snippets"
],
"homepage": "https://github.com/permafrost-dev/code-snippets",
"license": "MIT",
"authors": [
{
"name": "Patrick Organ",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"spatie/phpunit-snapshot-assertions": "^4.2"
},
"autoload": {
"psr-4": {
"Permafrost\\CodeSnippets\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Permafrost\\CodeSnippets\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html build/coverage"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}