Skip to content

Commit 2cbea4e

Browse files
committed
Ship composer.lock with the filemanager
Will reduce memory usage during initial install and will keep pkgs versions consistent
1 parent 9ad023b commit 2cbea4e

File tree

4 files changed

+4373
-2
lines changed

4 files changed

+4373
-2
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
.env
1212
composer.phar
13-
composer.lock
1413
test/vendor/
1514
test/node_modules/
1615
npm-debug.log
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "filegator/filegator",
3+
"description": "Filegator",
4+
"license": "MIT",
5+
"type": "project",
6+
"config": {
7+
"platform": {
8+
"php": "7.1.3"
9+
}
10+
},
11+
"require": {
12+
"php": "^7.1.3",
13+
"monolog/monolog": "^1.24",
14+
"nikic/fast-route": "^1.3",
15+
"symfony/security-csrf": "^4.4",
16+
"symfony/http-foundation": "^4.4",
17+
"dibi/dibi": "^4.1",
18+
"php-di/php-di": "^6.0",
19+
"rakit/validation": "^1.1",
20+
"league/flysystem": "^1.0",
21+
"league/flysystem-ziparchive": "^1.0",
22+
"league/flysystem-sftp": "^1.0"
23+
},
24+
"authors": [
25+
{
26+
"name": "Milos Stojanovic",
27+
"email": "alcalbg@gmail.com"
28+
}
29+
],
30+
"autoload": {
31+
"psr-4": {
32+
"Filegator\\": "backend"
33+
}
34+
},
35+
"autoload-dev": {
36+
"psr-4": {
37+
"Tests\\": "tests/backend/"
38+
}
39+
},
40+
"require-dev": {
41+
"phpunit/phpunit": "^7.5",
42+
"symfony/var-dumper": "^4.4",
43+
"league/flysystem-memory": "^1.0",
44+
"phpstan/phpstan": "^0.11.8"
45+
}
46+
}

0 commit comments

Comments
 (0)