-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
71 lines (71 loc) · 1.94 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
{
"name": "owenmelbz/forget-db",
"description": "A simple GDPR inspired tool to anonymise confidential database data.",
"keywords": ["laravel", "database", "cli", "gdpr"],
"homepage": "https://github.com/OwenMelbz/forget-db",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/OwenMelbz/forget-db/issues",
"source": "https://github.com/OwenMelbz/forget-db"
},
"authors": [
{
"name": "Owen Melbourne",
"email": "owenmelbz@gmail.com"
}
],
"require": {
"php": "^7.1.3",
"fzaninotto/faker": "^1.7",
"illuminate/database": "^6.0",
"josegonzalez/dotenv": "^3.2",
"knplabs/github-api": "^2.8",
"laravel/helpers": "^1.1",
"php-http/guzzle6-adapter": "^1.1",
"symfony/yaml": "^4.0",
"ext-pdo": "*"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.1.0",
"phpunit/phpunit": "^8.2",
"squizlabs/php_codesniffer": "^3.2",
"laravel-zero/framework": "^6.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"ext-posix": "0"
}
},
"scripts": {
"post-create-project-cmd": [
"@php application app:rename"
],
"clean": [
"php ./vendor/bin/phpcbf --standard=phpcs.xml ./app"
],
"build": [
"php forget-db app:build forget-db"
],
"link": [
"rm /usr/local/bin/forget-db || true",
"cp ./builds/application /usr/local/bin/forget-db"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/forget-db"]
}