-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
78 lines (78 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
{
"name": "ramsey/php-library-starter-kit",
"description": "A starter kit for quickly setting up a new PHP library package.",
"license": "MIT",
"type": "project",
"keywords": [
"builder",
"library",
"package",
"skeleton",
"template"
],
"authors": [
{
"name": "Ben Ramsey",
"email": "[email protected]",
"homepage": "https://benramsey.com"
}
],
"require": {
"php": "^8.1",
"symfony/finder": "^6.2",
"twig/twig": "^3.5"
},
"require-dev": {
"ramsey/devtools": "^2.0",
"spatie/phpunit-snapshot-assertions": "^5.0"
},
"suggest": {
"ext-pcntl": "Provides the ability to quit and resume the starter kit wizard on POSIX systems"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ramsey\\Dev\\LibraryStarterKit\\": "src/LibraryStarterKit/",
"Vendor\\SubNamespace\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ramsey\\Test\\Dev\\LibraryStarterKit\\": "tests/LibraryStarterKit/",
"Vendor\\Test\\SubNamespace\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ramsey/composer-repl": true,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"captainhook/plugin-composer": true,
"ramsey/devtools": true
},
"sort-packages": true
},
"extra": {
"captainhook": {
"force-install": true
},
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
},
"ramsey/devtools": {
"command-prefix": "dev",
"memory-limit": "-1"
}
},
"scripts": {
"post-root-package-install": "git init",
"post-create-project-cmd": "Ramsey\\Dev\\LibraryStarterKit\\Wizard::start",
"starter-kit": "Ramsey\\Dev\\LibraryStarterKit\\Wizard::start"
},
"scripts-descriptions": {
"starter-kit": "Runs the PHP Library Starter Kit wizard."
}
}