-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 864 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 864 Bytes
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": "werx/core",
"description": "Front controller and other core libraries used by the Werx project.",
"homepage": "https://github.com/werx/core",
"license": "MIT",
"authors": [
{
"name": "Josh Moody",
"email": "josh@moody.io"
}
],
"autoload": {
"psr-4": {
"werx\\Core\\Tests\\": "tests/",
"werx\\Core\\Tests\\App\\": "tests/resources/",
"werx\\Core\\Tests\\App\\Controllers\\": "tests/resources/controllers/",
"werx\\Core\\Tests\\App\\Models\\": "tests/resources/models/",
"werx\\Core\\": "src/"
}
},
"require": {
"php": ">= 5.5",
"aura/router": "~2.0",
"league/plates": "~2.1",
"werx/config": "~1.0",
"illuminate/database": "~4.2",
"nyholm/dsn": "~1.0",
"symfony/http-foundation": "~2.6",
"werx/url": "~1.2"
},
"require-dev": {
"phpunit/phpunit": "~4.4",
"squizlabs/php_codesniffer": "~2.2"
}
}