-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
75 lines (75 loc) · 1.62 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
72
73
74
75
{
"name": "nibra/joomla-standards-contenttypes",
"description": "Common interfaces for Content Types",
"keywords": [
"joomla",
"joomla-x",
"pythagoras",
"content-type",
"content"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Niels Braczek",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Joomla\\Content\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Content\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "joomla/joomla-standards",
"version": "0.2.1",
"source": {
"url": "https://github.com/nibra/joomla-standards.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"joomla/joomla-standards": "*",
"league/commonmark": "^0.18.3"
},
"scripts": {
"build": [
"@clean",
"php ./bin/build.php"
],
"clean": "rm -rf build/ src/* .php_cs.cache",
"test": [
"@travis",
"@lint"
],
"travis": [
"tests/smoke.php"
],
"pull": [
"rm -rf vendor",
"composer install"
]
}
}