-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
executable file
·39 lines (39 loc) · 1.1 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
{
"name": "caffeina-core/core",
"type": "library",
"description": "Platform for rapid application development.",
"keywords": ["framework","core","sdk","platform"],
"homepage": "http://caffeina.com",
"license": "MIT",
"authors": [
{
"name": "Stefano Azzolini",
"email": "[email protected]"
},
{
"name": "Gabriele Diener",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^5"
},
"scripts": {
"test-lint" : "find classes -type f -name '*.php' -exec php -l {} \\;",
"test" : "vendor/bin/phpunit --colors=always --configuration=phpunit.xml",
"changelog" : "docs/build-changelog.sh --skip-head > CHANGELOG.md && git add -A && git commit -am \"Updated CHANGELOG\""
},
"config": {
"optimize-autoloader": true
},
"autoload": {
"classmap": [ "classes/" ]
},
"autoload-dev": {
"classmap": [ "classes/", "tests/" ]
}
}