-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.08 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
{
"name": "pointybeard/kickstarter-mock-campaign",
"description": "A PHP library for Generating mock Kickstarter campaign backer data.",
"type": "utility",
"keywords": ["kickstarter", "archive", "export", "backer data"],
"license": "MIT",
"authors": [
{
"name": "Alannah Kearney",
"email": "hi@alannahkearney.com",
"homepage": "http://alannahkearney.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.2",
"fzaninotto/faker": "dev-master",
"pointybeard/property-bag": "~1.0",
"pointybeard/php-cli-lib": "~1.1",
"pointybeard/kickstarter-export-parser": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"support": {
"issues": "https://github.com/pointybeard/kickstarter-mock-campaign/issues",
"wiki": "https://github.com/pointybeard/kickstarter-mock-campaign/wiki"
},
"autoload": {
"psr-4": {
"pointybeard\\Kickstarter\\MockCampaign\\": "src/"
}
}
}