-
Notifications
You must be signed in to change notification settings - Fork 24
/
example-config.php
75 lines (62 loc) · 3.29 KB
/
example-config.php
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
<?php
return array(
//The base_dir and archive_file path are combined to point to your tar archive
//The basic idea is a seperate process builds the tar file, then this finds it
'base_dir' => '/fakehome/Documents/github/Pulsestorm/var/build',
'archive_files' => 'Pulstorm_Example.tar',
//The Magento Connect extension name. Must be unique on Magento Connect
//Has no relation to your code module name. Will be the Connect extension name
'extension_name' => 'Pulstorm_Example',
//Your extension version. By default, if you're creating an extension from a
//single Magento module, the tar-to-connect script will look to make sure this
//matches the module version. You can skip this check by setting the
//skip_version_compare value to true
'extension_version' => '1.0.3',
'skip_version_compare' => false,
//You can also have the package script use the version in the module you
//are packaging with.
'auto_detect_version' => false,
//Where on your local system you'd like to build the files to
'path_output' => '/fakehome/Pulsestorm/var/build-connect',
//Magento Connect license value.
'stability' => 'stable',
//Magento Connect license value
'license' => 'MIT',
//Magento Connect channel value. This should almost always (always?) be community
'channel' => 'community',
//Magento Connect information fields.
'summary' => 'Provides navigation shortcuts for the admin console\'s navigation and gloal search',
'description' => 'This extension provides Magento admin console users with an "application launcher". This application launcher provides instant access to the admin console\'s navigation, every system configuration search section, as well as the Magento global search. The Pulse Storm launcher is a free, open source, must have extension for anyone working with Magento. ',
'notes' => 'Typo fixes, properly aborts ajax requests.',
//Magento Connect author information. If author_email is [email protected], script will
//prompt you for the correct name. Should match your http://www.magentocommerce.com/
//login email address
'author_name' => 'Alan Storm',
'author_user' => 'alanstorm',
'author_email' => '[email protected]',
// Optional: adds additional author nodes to package.xml
'additional_authors' => array(
array(
'author_name' => 'Mike West',
'author_user' => 'micwest',
'author_email' => '[email protected]',
),
array(
'author_name' => 'Reggie Gabriel',
'author_user' => 'rgabriel',
'author_email' => '[email protected]',
),
),
//PHP min/max fields for Connect. I don't know if anyone uses these, but you should
//probably check that they're accurate
'php_min' => '5.2.0',
'php_max' => '6.0.0',
//PHP extension dependencies. An array containing one or more of either:
// - a single string (the name of the extension dependency); use this if the
// extension version does not matter
// - an associative array with 'name', 'min', and 'max' keys which correspond
// to the extension's name and min/max required versions
//Example:
// array('json', array('name' => 'mongo', 'min' => '1.3.0', 'max' => '1.4.0'))
'extensions' => array()
);