]> git.pld-linux.org Git - packages/php-ZendFramework.git/blame - php-ZendFramework.spec
tests require newer phpunit than we have
[packages/php-ZendFramework.git] / php-ZendFramework.spec
CommitLineData
fa357215
ER
1#
2# Conditional build:
3%bcond_with tests # build with tests
4
d9de598b
ER
5# NOTE:
6# - ZendXml has it's own versioning schema, version 1.0.1 as of 2.4.8 ZF2 release
7
fa357215
ER
8Summary: Zend Framework 2
9Name: php-ZendFramework
10Version: 2.4.8
11Release: 0.1
12License: BSD
13Group: Development/Libraries
14Source0: https://packages.zendframework.com/releases/ZendFramework-%{version}/ZendFramework-%{version}.tgz
15# Source0-md5: 145d2e23b9f745a1e11adbecc98761e9
16# git clone https://github.com/zendframework/zf2.git
17# cd zf2; git checkout release-2.3.9
18# tar czf ../ZendFramework-tests-2.3.9.tgz tests
4051ae44 19#Source1: ZendFramework-tests-%{version}.tgz
fa357215
ER
20Source2: autoload.php
21URL: http://framework.zend.com/
22Requires: php(core) >= 5.3.23
4051ae44
ER
23%if %{with tests}
24BuildRequires: phpunit >= 4.0.0
25%endif
fa357215
ER
26BuildArch: noarch
27BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
28
29%description
30Zend Framework 2 is an open source framework for developing web
31applications and services using PHP 5.3+. Zend Framework 2 uses 100%
32object-oriented code and utilizes most of the new features of PHP 5.3,
33namely namespaces, late static binding, lambda functions and closures.
34
35Zend Framework 2 evolved from Zend Framework 1, a successful PHP
36framework with over 15 million downloads.
37
38%package Authentication
39Summary: Zend Framework 2: Authentication Component
40URL: http://framework.zend.com/manual/2.4/en/modules/zend.authentication.intro.html
41Requires: %{name} = %{version}-%{release}
42
43%description Authentication
44The Zend\Authentication component provides an API for authentication
45and includes concrete authentication adapters for common use case
46scenarios.
47
48Zend\Authentication is concerned only with authentication and not with
49authorization. Authentication is loosely defined as determining
50whether an entity actually is what it purports to be (i.e.,
51identification), based on some set of credentials. Authorization, the
52process of deciding whether to allow an entity access to, or to
53perform operations upon, other entities is outside the scope of
54Zend\Authentication. For more information about authorization and
55access control with Zend Framework, please see the
56Zend\Permissions\Acl or Zend\Permissions\Rbac component.
57
58%package Barcode
59Summary: Zend Framework 2: Barcode Component
60URL: http://framework.zend.com/manual/2.4/en/modules/zend.barcode.intro.html
61Requires: %{name} = %{version}-%{release}
62
63%description Barcode
64Zend\Barcode\Barcode provides a generic way to generate barcodes. The
65Zend\Barcode component is divided into two subcomponents: barcode
66objects and renderers. Objects allow you to create barcodes
67independently of the renderer. Renderer allow you to draw barcodes
68based on the support required.
69
70%package Cache
71Summary: Zend Framework 2: Cache Component
72URL: http://framework.zend.com/manual/2.4/en/index.html#zend-cache
73Requires: %{name} = %{version}-%{release}
74
75%description Cache
76%{summary}
77
78Optional:
79- APC (php-pecl-apc)
80- DBA (php-dba)
81- Memcache (php-pecl-memcache)
82- Memcached (php-pecl-memcached)
83- Mongo (php-pecl-mongo)
84- Redis (php-pecl-redis)
85- XCache (php-xcache)
86
87%package Captcha
88Summary: Zend Framework 2: CAPTCHA Component
89URL: http://framework.zend.com/manual/2.4/en/modules/zend.captcha.intro.html
90Requires: %{name} = %{version}-%{release}
91
92%description Captcha
fa92044d
ER
93CAPTCHA stands for "Completely Automated Public Turing test to tell
94Computers and Humans Apart'; it is used as a challenge-response to
fa357215
ER
95ensure that the individual submitting information is a human and not
96an automated process. Typically, a CAPTCHA is used with form
97submissions where authenticated users are not necessary, but you want
98to prevent spam submissions.
99
100CAPTCHAs can take a variety of forms, including asking logic
101questions, presenting skewed fonts, and presenting multiple images and
102asking how they relate. The Zend\Captcha component aims to provide a
103variety of back ends that may be utilized either standalone or in
104conjunction with the Zend\Form component.
105
106%package Code
107Summary: Zend Framework 2: Code Component
108URL: http://framework.zend.com/manual/2.4/en/index.html
109Requires: %{name} = %{version}-%{release}
110
111%description Code
112Provides facilities to generate arbitrary code using an object
113oriented interface.
114
115%package Config
116Summary: Zend Framework 2: Config Component
117URL: http://framework.zend.com/manual/2.4/en/modules/zend.config.introduction.html
118Requires: %{name} = %{version}-%{release}
119
120%description Config
121Zend\Config is designed to simplify access to configuration data
122within applications. It provides a nested object property-based user
123interface for accessing this configuration data within application
124code. The configuration data may come from a variety of media
125supporting hierarchical data storage. Currently, Zend\Config provides
126adapters that read and write configuration data stored in .ini, JSON,
127YAML and XML files.
128
129%package Console
130Summary: Zend Framework 2: Console Component
131URL: http://framework.zend.com/manual/2.4/en/modules/zend.console.introduction.html
132Requires: %{name} = %{version}-%{release}
133
134%description Console
135Zend Framework 2 features built-in console support.
136
137When a Zend\Application is run from a console window (a shell window),
138it will recognize this fact and prepare Zend\Mvc components to handle
139the request. Console support is enabled by default, but to function
140properly it requires at least one console route and one action
141controller to handle the request.
142
143- Console routing allows you to invoke controllers and action
144 depending on command line parameters provided by the user.
145- Module Manager integration allows ZF2 applications and modules to
146 display help and usage information, in case the command line has not
147 been understood (no route matched).
148- Console-aware action controllers will receive a console request
149 containing all named parameters and flags. They are able to send
150 output back to the console window.
151- Console adapters provide a level of abstraction for interacting with
152 console on different operating systems.
153- Console prompts can be used to interact with the user by asking him
154 questions and retrieving input.
155
156%package Crypt
157Summary: Zend Framework 2: Crypt Component
158URL: http://framework.zend.com/manual/2.4/en/modules/zend.crypt.introduction.html
159Requires: %{name} = %{version}-%{release}
160
161%description Crypt
162Zend\Crypt provides support of some cryptographic tools. The available
163features are:
164
165- encrypt-then-authenticate using symmetric ciphers (the
166 authentication step is provided using HMAC)
167- encrypt/decrypt using symmetric and public key algorithm (e.g. RSA
168 algorithm)
169- generate digital sign using public key algorithm (e.g. RSA
170 algorithm)
171- key exchange using the Diffie-Hellman method
172- Key derivation function (e.g. using PBKDF2 algorithm)
173- Secure password hash (e.g. using Bcrypt algorithm)
174- generate Hash values
175- generate HMAC values
176
177The main scope of this component is to offer an easy and secure way to
178protect and authenticate sensitive data in PHP. Because the use of
179cryptography is not so easy we recommend to use the Zend\Crypt
180component only if you have a minimum background on this topic.
181
182%package Db
183Summary: Zend Framework 2: DB Component
184URL: http://framework.zend.com/manual/2.4/en/index.html#zend-db
185Requires: %{name} = %{version}-%{release}
186
187%description Db
188%{summary}
189
190Optional:
191- ibm_db2 (http://pecl.php.net/package/ibm_db2)
192- mysqli (php-mysql)
193- oci8 (http://pecl.php.net/package/oci8)
194- pgsql (php-pgsql)
195- sqlsrv (http://pecl.php.net/package/sqlsrv)
196
197%package Debug
198Summary: Zend Framework 2: Debug Component
199URL: http://framework.zend.com/manual/2.4/en/index.html
200Requires: %{name} = %{version}-%{release}
201
202%description Debug
203%{summary}
204
205Optional: XDebug (php-pecl-xdebug)
206
207%package Di
208Summary: Zend Framework 2: DI Component
209URL: http://framework.zend.com/manual/2.4/en/modules/zend.di.introduction.html
210Requires: %{name} = %{version}-%{release}
211
212%description Di
213Dependency Injection (here-in called DI) is a concept that has been
fa92044d 214talked about in numerous places over the web. Simply put, we'll
fa357215
ER
215explain the act of injecting dependencies simply with this below code:
216
217$b = new MovieLister(new MovieFinder());
218
219Above, MovieFinder is a dependency of MovieLister, and MovieFinder was
220injected into MovieLister.
221
222%package Dom
223Summary: Zend Framework 2: DOM Component
224URL: http://framework.zend.com/manual/2.4/en/modules/zend.dom.intro.html
225Requires: %{name} = %{version}-%{release}
226
227%description Dom
228The Zend\Dom component provides tools for working with DOM documents
229and structures. Currently, we offer Zend\Dom\Query, which provides a
230unified interface for querying DOM documents utilizing both XPath and
231CSS selectors.
232
233%package Escaper
234Summary: Zend Framework 2: Escaper Component
235URL: http://framework.zend.com/manual/2.4/en/modules/zend.escaper.introduction.html
236Requires: %{name} = %{version}-%{release}
237
238%description Escaper
239The OWASP Top 10 web security risks study lists Cross-Site Scripting
fa92044d 240(XSS) in second place. PHP's sole functionality against XSS is limited
fa357215
ER
241to two functions of which one is commonly misapplied. Thus, the
242Zend\Escaper component was written. It offers developers a way to
243escape output and defend from XSS and related vulnerabilities by
244introducing contextual escaping based on peer-reviewed rules.
245
246%package EventManager
247Summary: Zend Framework 2: EventManager Component
248URL: http://framework.zend.com/manual/2.4/en/modules/zend.event-manager.event-manager.html
249Requires: %{name} = %{version}-%{release}
250
251%description EventManager
252The EventManager is a component designed for the following use cases:
253
254- Implementing simple subject/observer patterns.
255- Implementing Aspect-Oriented designs.
256- Implementing event-driven architectures.
257
258The basic architecture allows you to attach and detach listeners to
259named events, both on a per-instance basis as well as via shared
260collections; trigger events; and interrupt execution of listeners.
261
262%package Feed
263Summary: Zend Framework 2: Feed Component
264URL: http://framework.zend.com/manual/2.4/en/modules/zend.feed.introduction.html
265Requires: %{name} = %{version}-%{release}
266
267%description Feed
268Zend\Feed provides functionality for consuming RSS and Atom feeds. It
269provides a natural syntax for accessing elements of feeds, feed
270attributes, and entry attributes. Zend\Feed also has extensive support
271for modifying feed and entry structure with the same natural syntax,
272and turning the result back into XML. In the future, this modification
273support could provide support for the Atom Publishing Protocol.
274
275Zend\Feed consists of Zend\Feed\Reader for reading RSS and Atom feeds,
276Zend\Feed\Writer for writing RSS and Atom feeds, and
277Zend\Feed\PubSubHubbub for working with Hub servers. Furthermore, both
278Zend\Feed\Reader and Zend\Feed\Writer support extensions which allows
279for working with additional data in feeds, not covered in the core API
280but used in conjunction with RSS and Atom feeds.
281
282%package File
283Summary: Zend Framework 2: File Component
284URL: http://framework.zend.com/manual/2.4/en/index.html#zend-file
285Requires: %{name} = %{version}-%{release}
286
287%description File
288%{summary}
289
290%package Filter
291Summary: Zend Framework 2: Filter Component
292URL: http://framework.zend.com/manual/2.4/en/modules/zend.filter.html
293Requires: %{name} = %{version}-%{release}
294
295%description Filter
296The Zend\Filter component provides a set of commonly needed data
297filters. It also provides a simple filter chaining mechanism by which
298multiple filters may be applied to a single datum in a user-defined
299order.
300
301%package Form
302Summary: Zend Framework 2: Form Component
303URL: http://framework.zend.com/manual/2.4/en/modules/zend.form.intro.html
304Requires: %{name} = %{version}-%{release}
305
306%description Form
307Zend\Form is intended primarily as a bridge between your domain models
308and the View Layer. It composes a thin layer of objects representing
309form elements, an InputFilter, and a small number of methods for
310binding data to and from the form and attached objects.
311
312The Zend\Form component consists of the following objects:
313
314- Elements, which simply consist of a name and attributes.
315- Fieldsets, which extend from Elements, but allow composing other
316 fieldsets and elements.
317- Forms, which extend from Fieldsets (and thus Elements). They provide
318 data and object binding, and compose InputFilters. Data binding is
319 done via ZendStdlibHydrator.
320
321%package Http
322Summary: Zend Framework 2: HTTP Component
323URL: http://framework.zend.com/manual/2.4/en/modules/zend.http.html
324Requires: %{name} = %{version}-%{release}
325
326%description Http
327Zend\Http is a primary foundational component of Zend Framework. Since
328much of what PHP does is web-based, specifically HTTP, it makes sense
329to have a performant, extensible, concise and consistent API to do all
330things HTTP. In nutshell, there are several parts of Zend\Http:
331
332- Context-less Request and Response classes that expose a fluent API
333 for introspecting several aspects of HTTP messages:
334 - ** Request line information and response status information
335 - ** Parameters, such as those found in POST and GET
336 - ** Message Body
337 - ** Headers
338- A Client implementation with various adapters that allow for sending
339 requests and introspecting responses.
340
341%package I18n
342Summary: Zend Framework 2: i18n Component
343URL: http://framework.zend.com/manual/2.4/en/modules/zend.i18n.translating.html
344Requires: %{name} = %{version}-%{release}
345
346%description I18n
347ZendI18n comes with a complete translation suite which supports all
348major formats and includes popular features like plural translations
349and text domains. The Translator component is mostly dependency free,
350except for the fallback to a default locale, where it relies on the
351Intl PHP extension.
352
353The translator itself is initialized without any parameters, as any
354configuration to it is optional. A translator without any translations
355will actually do nothing but just return the given message IDs.
356
357%package InputFilter
358Summary: Zend Framework 2: InputFilter Component
359URL: http://framework.zend.com/manual/2.4/en/modules/zend.input-filter.intro.html
360Requires: %{name} = %{version}-%{release}
361
362%description InputFilter
363The Zend\InputFilter component can be used to filter and validate
364generic sets of input data. For instance, you could use it to filter
365$_GET or $_POST values, CLI arguments, etc.
366
367%package Json
368Summary: Zend Framework 2: JSON Component
369URL: http://framework.zend.com/manual/2.4/en/modules/zend.json.introduction.html
370Requires: %{name} = %{version}-%{release}
371
372%description Json
373Zend\Json provides convenience methods for serializing native PHP to
374JSON and decoding JSON to native PHP.
375
376JSON, JavaScript Object Notation, can be used for data interchange
377between JavaScript and other languages. Since JSON can be directly
378evaluated by JavaScript, it is a more efficient and lightweight format
379than XML for exchanging data with JavaScript clients.
380
381In addition, Zend\Json provides a useful way to convert any arbitrary
382XML formatted string into a JSON formatted string. This built-in
383feature will enable PHP developers to transform the enterprise data
384encoded in XML format into JSON format before sending it to
385browser-based Ajax client applications. It provides an easy way to do
386dynamic data conversion on the server-side code thereby avoiding
387unnecessary XML parsing in the browser-side applications. It offers a
388nice utility function that results in easier application-specific data
389processing techniques.
390
391%package Ldap
392Summary: Zend Framework 2: LDAP Component
393URL: http://framework.zend.com/manual/2.4/en/modules/zend.ldap.introduction.html
394Requires: %{name} = %{version}-%{release}
395
396%description Ldap
397Zend\Ldap\Ldap is a class for performing LDAP operations including but
398not limited to binding, searching and modifying entries in an LDAP
399directory.
400
401%package Loader
402Summary: Zend Framework 2: Loader Component
403URL: http://framework.zend.com/manual/2.4/en/index.html#zend-loader
404Requires: %{name} = %{version}-%{release}
405
406%description Loader
407%{summary}
408
409%package Log
410Summary: Zend Framework 2: Log Component
411URL: http://framework.zend.com/manual/2.4/en/modules/zend.log.overview.html
412Requires: %{name} = %{version}-%{release}
413
414%description Log
415Zend\Log\Logger is a component for general purpose logging. It
416supports multiple log backends, formatting messages sent to the log,
417and filtering messages from being logged. These functions are divided
418into the following objects:
419
420- A Logger (instance of Zend\Log\Logger) is the object that your
421 application uses the most. You can have as many Logger objects as you
422 like; they do not interact. A Logger object must contain at least one
423 Writer, and can optionally contain one or more Filters.
424- A Writer (inherits from Zend\Log\Writer\AbstractWriter) is
425 responsible for saving data to storage.
426- A Filter (implements Zend\Log\Filter\FilterInterface) blocks log
427 data from being saved. A filter is applied to an individual writer.
428 Filters can be chained.
429- A Formatter (implements Zend\Log\Formatter\FormatterInterface) can
430 format the log data before it is written by a Writer. Each Writer has
431 exactly one Formatter.
432
433Optional: MongoDB (php-pecl-mongo)
434
435%package Mail
436Summary: Zend Framework 2: Mail Component
437URL: http://framework.zend.com/manual/2.4/en/modules/zend.mail.introduction.html
438Requires: %{name} = %{version}-%{release}
439
440%description Mail
441Zend\Mail provides generalized functionality to compose and send both
442text and MIME-compliant multipart email messages. Mail can be sent
443with Zend\Mail via the Mail\Transport\Sendmail, Mail\Transport\Smtp or
444the Mail\Transport\File transport. Of course, you can also implement
445your own transport by implementing the
446Mail\Transport\TransportInterface.
447
448%package Math
449Summary: Zend Framework 2: Math Component
450URL: http://framework.zend.com/manual/2.4/en/modules/zend.math.introduction.html
451Requires: %{name} = %{version}-%{release}
452
453%description Math
454Zend\Math namespace provides general mathematical functions. So far
455the supported functionalities are:
456
457- Zend\Math\Rand: A random number generator
458- Zend\Math\BigInteger: A library to manage big integers
459
460Optional: php-gmp
461
462%package Memory
463Summary: Zend Framework 2: Memory Component
464URL: http://framework.zend.com/manual/2.4/en/index.html
465Requires: %{name} = %{version}-%{release}
466
467%description Memory
468%{summary}
469
470%package Mime
471Summary: Zend Framework 2: MIME Component
472URL: http://framework.zend.com/manual/2.4/en/modules/zend.mime.html
473Requires: %{name} = %{version}-%{release}
474
475%description Mime
476Zend\Mime\Mime is a support class for handling multipart MIME
477messages. It is used by Zend\Mail and Zend\Mime\Message and may be
478used by applications requiring MIME support.
479
480Optional: %{name}-Mail
481
482%package ModuleManager
483Summary: Zend Framework 2: ModuleManager Component
484URL: http://framework.zend.com/manual/2.4/en/modules/zend.module-manager.intro.html
485Requires: %{name} = %{version}-%{release}
486
487%description ModuleManager
488Zend Framework 2.0 introduces a new and powerful approach to modules.
489This new module system is designed with flexibility, simplicity, and
490re-usability in mind. A module may contain just about anything: PHP
491code, including MVC functionality; library code; view scripts; and/or
492public assets such as images, CSS, and JavaScript.
493
494%package Mvc
495Summary: Zend Framework 2: MVC Component
496URL: http://framework.zend.com/manual/2.4/en/modules/zend.mvc.intro.html
497Requires: %{name} = %{version}-%{release}
498
499%description Mvc
500Zend\Mvc is a brand new MVC implementation designed from the ground up
501for Zend Framework 2, focusing on performance and flexibility.
502
503The MVC layer is built on top of the following components:
504
505- Zend\ServiceManager - Zend Framework provides a set of default
506 service definitions set up at Zend\Mvc\Service. The ServiceManager
507 creates and configures your application instance and workflow.
508- Zend\EventManager - The MVC is event driven. This component is used
509 everywhere from initial bootstrapping of the application, through
510 returning response and request calls, to setting and retrieving routes
511 and matched routes, as well as render views.
512- Zend\Http - specifically the request and response objects.
fa92044d 513- Zend\Stdlib\DispatchableInterface. All "controllers' are simply
fa357215
ER
514 dispatchable objects.
515
516%package Navigation
517Summary: Zend Framework 2: Navigation Component
518URL: http://framework.zend.com/manual/2.4/en/modules/zend.navigation.intro.html
519Requires: %{name} = %{version}-%{release}
520
521%description Navigation
522Zend\Navigation is a component for managing trees of pointers to web
523pages. Simply put: It can be used for creating menus, breadcrumbs,
524links, and sitemaps, or serve as a model for other navigation related
525purposes.
526
527%package Paginator
528Summary: Zend Framework 2: Paginator Component
529URL: http://framework.zend.com/manual/2.4/en/modules/zend.paginator.introduction.html
530Requires: %{name} = %{version}-%{release}
531
532%description Paginator
533Zend\Paginator is a flexible component for paginating collections of
534data and presenting that data to users.
535
536The primary design goals of Zend\Paginator are as follows:
537
538- Paginate arbitrary data, not just relational databases
539- Fetch only the results that need to be displayed
540- Do not force users to adhere to only one way of displaying data or
541 rendering pagination controls
542- Loosely couple Zend\Paginator to other Zend Framework components so
543 that users who wish to use it independently of Zend\View, Zend\Db,
544 etc. can do so
545
546%package Permissions-Acl
547Summary: Zend Framework 2: Permissions ACL Component
548URL: http://framework.zend.com/manual/2.4/en/modules/zend.permissions.acl.intro.html
549Requires: %{name} = %{version}-%{release}
550
551%description Permissions-Acl
552The Zend\Permissions\Acl component provides a lightweight and flexible
553access control list (ACL) implementation for privileges management. In
fa92044d 554general, an application may utilize such ACL's to control access to
fa357215
ER
555certain protected objects by other requesting objects.
556
557For the purposes of this documentation:
558
559- a resource is an object to which access is controlled.
560- a role is an object that may request access to a Resource.
561
562Put simply, roles request access to resources. For example, if a
563parking attendant requests access to a car, then the parking attendant
564is the requesting role, and the car is the resource, since access to
565the car may not be granted to everyone.
566
567Through the specification and use of an ACL, an application may
568control how roles are granted access to resources.
569
570%package Permissions-Rbac
571Summary: Zend Framework 2: Permissions RBAC Component
572URL: http://framework.zend.com/manual/2.4/en/modules/zend.permissions.rbac.intro.html
573Requires: %{name} = %{version}-%{release}
574
575%description Permissions-Rbac
576The Zend\Permissions\Rbac component provides a lightweight role-based
fa92044d 577access control implementation based around PHP 5.3's SPL
fa357215
ER
578RecursiveIterator and RecursiveIteratorIterator. RBAC differs from
579access control lists (ACL) by putting the emphasis on roles and their
580permissions rather than objects (resources).
581
582%package ProgressBar
583Summary: Zend Framework 2: ProgressBar Component
584URL: http://framework.zend.com/manual/2.4/en/modules/zend.progress-bar.html
585Requires: %{name} = %{version}-%{release}
586
587%description ProgressBar
588Zend\ProgressBar is a component to create and update progress bars in
589different environments. It consists of a single backend, which outputs
590the progress through one of the multiple adapters. On every update, it
591takes an absolute value and optionally a status message, and then
592calls the adapter with some precalculated values like percentage and
593estimated time left.
594
595%package Serializer
596Summary: Zend Framework 2: Serializer Component
597URL: http://framework.zend.com/manual/2.4/en/modules/zend.serializer.html
598Requires: %{name} = %{version}-%{release}
599
600%description Serializer
601The Zend\Serializer component provides an adapter based interface to
602simply generate storable representation of PHP types by different
603facilities, and recover.
604
605Optional: msgpack (php-pecl-msgpack)
606
607%package Server
608Summary: Zend Framework 2: Server Component
609URL: http://framework.zend.com/manual/2.4/en/modules/zend.server.html
610Requires: %{name} = %{version}-%{release}
611
612%description Server
613The Zend\Server family of classes provides functionality for the
614various server classes, including Zend\XmlRpc\Server and
615Zend\Json\Server. Zend\Server\Server provides an interface that mimics
fa92044d 616PHP 5's SoapServer class; all server classes should implement this
fa357215
ER
617interface in order to provide a standard server API.
618
619The Zend\Server\Reflection tree provides a standard mechanism for
620performing function and class introspection for use as callbacks with
621the server classes, and provides data suitable for use with
fa92044d 622Zend\Server\Server's getFunctions() and loadFunctions() methods.
fa357215
ER
623
624%package ServiceManager
625Summary: Zend Framework 2: ServiceManager Component
626URL: http://framework.zend.com/manual/2.4/en/modules/zend.service-manager.intro.html
627Requires: %{name} = %{version}-%{release}
628
629%description ServiceManager
630The Service Locator design pattern is implemented by the
631Zend\ServiceManager component. The Service Locator is a service/object
632locator, tasked with retrieving other objects.
633
634%package Session
635Summary: Zend Framework 2: Session Component
636URL: http://framework.zend.com/manual/2.4/en/index.html#zend-session
637Requires: %{name} = %{version}-%{release}
638
639%description Session
640Manage and preserve session data, a logical complement of cookie data,
641across multiple page requests by the same client.
642
643Optional: MongoDB (php-pecl-mongo)
644
645%package Soap
646Summary: Zend Framework 2: SOAP Component
647URL: http://framework.zend.com/manual/2.4/en/index.html#zend-soap
648Requires: %{name} = %{version}-%{release}
649
650%description Soap
651%{summary}
652
653%package Stdlib
654Summary: Zend Framework 2: Stdlib Component
655URL: http://framework.zend.com/manual/2.4/en/index.html#zend-stdlib
656Requires: %{name} = %{version}-%{release}
657
658%description Stdlib
659%{summary}
660
661%package Tag
662Summary: Zend Framework 2: Tag Component
663URL: http://framework.zend.com/manual/2.4/en/modules/zend.tag.introduction.html
664Requires: %{name} = %{version}-%{release}
665
666%description Tag
667Zend\Tag is a component suite which provides a facility to work with
668taggable Items. As its base, it provides two classes to work with
669Tags, Zend\Tag\Item and Zend\Tag\ItemList. Additionally, it comes with
670the interface Zend\Tag\TaggableInterface, which allows you to use any
671of your models as a taggable item in conjunction with Zend\Tag.
672
673Zend\Tag\Item is a basic taggable item implementation which comes with
674the essential functionality required to work with the Zend\Tag suite.
675A taggable item always consists of a title and a relative weight (e.g.
676number of occurrences). It also stores parameters which are used by
677the different sub-components of Zend\Tag.
678
679To group multiple items together, Zend\Tag\ItemList exists as an array
680iterator and provides additional functionality to calculate absolute
681weight values based on the given relative weights of each item in it.
682
683%package Test
684Summary: Zend Framework 2: Test Component
685URL: http://framework.zend.com/manual/2.4/en/modules/zend.test.introduction.html
686Requires: %{name} = %{version}-%{release}
687
688%description Test
689The Zend\Test component provides tools to facilitate unit testing of
690your Zend Framework applications. At this time, we offer facilities to
691enable testing of your Zend Framework MVC applications.
692
693PHPUnit is the only library supported currently.
694
695%package Text
696Summary: Zend Framework 2: Text Component
697URL: http://framework.zend.com/manual/2.4/en/index.html#zend-text
698Requires: %{name} = %{version}-%{release}
699
700### TODO: Is Zend/Text/Figlet/zend-framework.flf allowed?
701
702%description Text
703%{summary}
704
705%package Uri
706Summary: Zend Framework 2: URI Component
707URL: http://framework.zend.com/manual/2.4/en/modules/zend.uri.html
708Requires: %{name} = %{version}-%{release}
709
710%description Uri
711Zend\Uri is a component that aids in manipulating and validating
712Uniform Resource Identifiers (URIs) [1]. Zend\Uri exists primarily to
713service other components, such as Zend\Http\, but is also useful as a
714standalone utility.
715
716URIs always begin with a scheme, followed by a colon. The construction
717of the many different schemes varies significantly. The Zend\Uri
718component provides the Zend\Uri\UriFactory that returns a class
719implementing the Zend\Uri\UriInterface which specializes in the scheme
720if such a class is registered with the Factory.
721
722[1] http://www.ietf.org/rfc/rfc3986.txt
723
724%package Validator
725Summary: Zend Framework 2: Validator Component
726URL: http://framework.zend.com/manual/2.4/en/modules/zend.validator.html
727Requires: %{name} = %{version}-%{release}
728
729%description Validator
730The Zend\Validator component provides a set of commonly needed
731validators. It also provides a simple validator chaining mechanism by
732which multiple validators may be applied to a single datum in a
733user-defined order.
734
735%package Version
736Summary: Zend Framework 2: Version Component
737URL: http://framework.zend.com/manual/2.4/en/modules/zend.version.html
738Requires: %{name} = %{version}-%{release}
739
740%description Version
741Zend\Version provides a class constant Zend\Version\Version::VERSION
742that contains a string identifying the version number of your Zend
743Framework installation. Zend\Version\Version::VERSION might contain
fa92044d 744"1.7.4', for example.
fa357215
ER
745
746The static method Zend\Version\Version::compareVersion($version) is
747based on the PHP function version_compare(). This method returns -1 if
748the specified version is older than the installed Zend Framework
749version, 0 if they are the same and +1 if the specified version is
750newer than the version of the Zend Framework installation.
751
752%package View
753Summary: Zend Framework 2: View Component
754URL: http://framework.zend.com/manual/2.4/en/modules/zend.view.quick-start.html
755Requires: %{name} = %{version}-%{release}
756
757%description View
fa92044d 758Zend\View provides the "View' layer of Zend Framework 2's MVC system.
fa357215
ER
759It is a multi-tiered system allowing a variety of mechanisms for
760extension, substitution, and more.
761
762%package XmlRpc
763Summary: Zend Framework 2: XML-RPC Component
764URL: http://framework.zend.com/manual/2.4/en/modules/zend.xmlrpc.intro.html
765Requires: %{name} = %{version}-%{release}
766
767%description XmlRpc
fa92044d 768From its home page, XML-RPC is described as a '...remote procedure
fa357215
ER
769calling using HTTP as the transport and XML as the encoding. XML-RPC
770is designed to be as simple as possible, while allowing complex data
fa92044d 771structures to be transmitted, processed and returned.'
fa357215
ER
772
773Zend Framework provides support for both consuming remote XML-RPC
774services and building new XML-RPC servers.
775
776[1] http://www.xmlrpc.com/
777
778%package ZendXml
779Summary: Zend Framework 2: XML usage, best practices, and security in PHP
780URL: https://github.com/zendframework/ZendXml
781Requires: %{name} = %{version}-%{release}
782
783%description ZendXml
784This is a security component to prevent XML eXternal Entity (XXE) and
785XML Entity Expansion (XEE) attacks on XML documents.
786
787The XXE attack is prevented disabling the load of external entities in
788the libxml library used by PHP, using the function
789libxml_disable_entity_loader.
790
791The XEE attack is prevented looking inside the XML document for ENTITY
792usage. If the XML document uses ENTITY the library throw an Exception.
793
794%prep
795%setup -q -n ZendFramework-%{version} %{?with_tests:-a 1}
796
797%build
798%if %{with tests}
799cd tests
800: Create autoloader for test suite
801cat <<'AUTOLOADER' | tee _autoload.php
802<?php
803require_once '$RPM_BUILD_ROOT%{php_data_dir}/Zend/autoload.php';
804
805Zend\Loader\AutoloaderFactory::factory(array(
806 'Zend\\Loader\\StandardAutoloader' => array(
807 'namespaces' => array(
808 'ZendTest' => __DIR__ . '/ZendTest',
809))));
810AUTOLOADER
811
812: ignore these for now
813rm ZendTest/Mvc/Controller/Plugin/FilePostRedirectGetTest.php
814: PHP 5.4 segfaults https://bugzilla.redhat.com/1131979
815rm ZendTest/Serializer/Adapter/WddxTest.php
816
817RET=0
818for dir in ZendTest/[A-Z]*; do
819 phpunit $dir || RET=1
820done
821exit $RET
822%endif
823
824%clean
825rm -rf $RPM_BUILD_ROOT
826
827%install
828rm -rf $RPM_BUILD_ROOT
829install -d $RPM_BUILD_ROOT%{php_data_dir}
830cp -a library/* $RPM_BUILD_ROOT%{php_data_dir}
831
832cp -p %{SOURCE2} $RPM_BUILD_ROOT%{php_data_dir}/Zend/autoload.php
833
834%files
835%defattr(644,root,root,755)
836%doc LICENSE.txt
837%doc *.md composer.json
838%dir %{php_data_dir}/Zend
839
840%files Authentication
841%defattr(644,root,root,755)
842%doc library/Zend/Authentication/*.md
843%doc library/Zend/Authentication/composer.json
844%{php_data_dir}/Zend/Authentication
845%exclude %{php_data_dir}/Zend/Authentication/*.md
846%exclude %{php_data_dir}/Zend/Authentication/composer.json
847
848%files Barcode
849%defattr(644,root,root,755)
850%doc library/Zend/Barcode/*.md
851%doc library/Zend/Barcode/composer.json
852%{php_data_dir}/Zend/Barcode
853%exclude %{php_data_dir}/Zend/Barcode/*.md
854%exclude %{php_data_dir}/Zend/Barcode/composer.json
855
856%files Cache
857%defattr(644,root,root,755)
858%doc library/Zend/Cache/*.md
859%doc library/Zend/Cache/composer.json
860%{php_data_dir}/Zend/Cache
861%exclude %{php_data_dir}/Zend/Cache/*.md
862%exclude %{php_data_dir}/Zend/Cache/composer.json
863
864%files Captcha
865%defattr(644,root,root,755)
866%doc library/Zend/Captcha/*.md
867%doc library/Zend/Captcha/composer.json
868%{php_data_dir}/Zend/Captcha
869%exclude %{php_data_dir}/Zend/Captcha/*.md
870%exclude %{php_data_dir}/Zend/Captcha/composer.json
871
872%files Code
873%defattr(644,root,root,755)
874%doc library/Zend/Code/*.md
875%doc library/Zend/Code/composer.json
876%{php_data_dir}/Zend/Code
877%exclude %{php_data_dir}/Zend/Code/*.md
878%exclude %{php_data_dir}/Zend/Code/composer.json
879
880%files Config
881%defattr(644,root,root,755)
882%doc library/Zend/Config/*.md
883%doc library/Zend/Config/composer.json
884%{php_data_dir}/Zend/Config
885%exclude %{php_data_dir}/Zend/Config/*.md
886%exclude %{php_data_dir}/Zend/Config/composer.json
887
888%files Console
889%defattr(644,root,root,755)
890%doc library/Zend/Console/*.md
891%doc library/Zend/Console/composer.json
892%{php_data_dir}/Zend/Console
893%exclude %{php_data_dir}/Zend/Console/*.md
894%exclude %{php_data_dir}/Zend/Console/composer.json
895
896%files Crypt
897%defattr(644,root,root,755)
898%doc library/Zend/Crypt/*.md
899%doc library/Zend/Crypt/composer.json
900%{php_data_dir}/Zend/Crypt
901%exclude %{php_data_dir}/Zend/Crypt/*.md
902%exclude %{php_data_dir}/Zend/Crypt/composer.json
903
904%files Db
905%defattr(644,root,root,755)
906%doc library/Zend/Db/*.md
907%doc library/Zend/Db/composer.json
908%{php_data_dir}/Zend/Db
909%exclude %{php_data_dir}/Zend/Db/*.md
910%exclude %{php_data_dir}/Zend/Db/composer.json
911
912%files Debug
913%defattr(644,root,root,755)
914%doc library/Zend/Debug/*.md
915%doc library/Zend/Debug/composer.json
916%{php_data_dir}/Zend/Debug
917%exclude %{php_data_dir}/Zend/Debug/*.md
918%exclude %{php_data_dir}/Zend/Debug/composer.json
919
920%files Di
921%defattr(644,root,root,755)
922%doc library/Zend/Di/*.md
923%doc library/Zend/Di/composer.json
924%{php_data_dir}/Zend/Di
925%exclude %{php_data_dir}/Zend/Di/*.md
926%exclude %{php_data_dir}/Zend/Di/composer.json
927
928%files Dom
929%defattr(644,root,root,755)
930%doc library/Zend/Dom/*.md
931%doc library/Zend/Dom/composer.json
932%{php_data_dir}/Zend/Dom
933%exclude %{php_data_dir}/Zend/Dom/*.md
934%exclude %{php_data_dir}/Zend/Dom/composer.json
935
936%files Escaper
937%defattr(644,root,root,755)
938%doc library/Zend/Escaper/*.md
939%doc library/Zend/Escaper/composer.json
940%{php_data_dir}/Zend/Escaper
941%exclude %{php_data_dir}/Zend/Escaper/*.md
942%exclude %{php_data_dir}/Zend/Escaper/composer.json
943
944%files EventManager
945%defattr(644,root,root,755)
946%doc library/Zend/EventManager/*.md
947%doc library/Zend/EventManager/composer.json
948%{php_data_dir}/Zend/EventManager
949%exclude %{php_data_dir}/Zend/EventManager/*.md
950%exclude %{php_data_dir}/Zend/EventManager/composer.json
951
952%files Feed
953%defattr(644,root,root,755)
954%doc library/Zend/Feed/*.md
955%doc library/Zend/Feed/composer.json
956%{php_data_dir}/Zend/Feed
957%exclude %{php_data_dir}/Zend/Feed/*.md
958%exclude %{php_data_dir}/Zend/Feed/composer.json
959
960%files File
961%defattr(644,root,root,755)
962%doc library/Zend/File/*.md
963%doc library/Zend/File/composer.json
964%{php_data_dir}/Zend/File
965%exclude %{php_data_dir}/Zend/File/*.md
966%exclude %{php_data_dir}/Zend/File/composer.json
967
968%files Filter
969%defattr(644,root,root,755)
970%doc library/Zend/Filter/*.md
971%doc library/Zend/Filter/composer.json
972%{php_data_dir}/Zend/Filter
973%exclude %{php_data_dir}/Zend/Filter/*.md
974%exclude %{php_data_dir}/Zend/Filter/composer.json
975
976%files Form
977%defattr(644,root,root,755)
978%doc library/Zend/Form/*.md
979%doc library/Zend/Form/composer.json
980%{php_data_dir}/Zend/Form
981%exclude %{php_data_dir}/Zend/Form/*.md
982%exclude %{php_data_dir}/Zend/Form/composer.json
983
984%files Http
985%defattr(644,root,root,755)
986%doc library/Zend/Http/*.md
987%doc library/Zend/Http/composer.json
988%{php_data_dir}/Zend/Http
989%exclude %{php_data_dir}/Zend/Http/*.md
990%exclude %{php_data_dir}/Zend/Http/composer.json
991
992%files I18n
993%defattr(644,root,root,755)
994%doc library/Zend/I18n/*.md
995%doc library/Zend/I18n/composer.json
996%{php_data_dir}/Zend/I18n
997%exclude %{php_data_dir}/Zend/I18n/*.md
998%exclude %{php_data_dir}/Zend/I18n/composer.json
999
1000%files InputFilter
1001%defattr(644,root,root,755)
1002%doc library/Zend/InputFilter/*.md
1003%doc library/Zend/InputFilter/composer.json
1004%{php_data_dir}/Zend/InputFilter
1005%exclude %{php_data_dir}/Zend/InputFilter/*.md
1006%exclude %{php_data_dir}/Zend/InputFilter/composer.json
1007
1008%files Json
1009%defattr(644,root,root,755)
1010%doc library/Zend/Json/*.md
1011%doc library/Zend/Json/composer.json
1012%{php_data_dir}/Zend/Json
1013%exclude %{php_data_dir}/Zend/Json/*.md
1014%exclude %{php_data_dir}/Zend/Json/composer.json
1015
1016%files Ldap
1017%defattr(644,root,root,755)
1018%doc library/Zend/Ldap/*.md
1019%doc library/Zend/Ldap/composer.json
1020%{php_data_dir}/Zend/Ldap
1021%exclude %{php_data_dir}/Zend/Ldap/*.md
1022%exclude %{php_data_dir}/Zend/Ldap/composer.json
1023
1024%files Loader
1025%defattr(644,root,root,755)
1026%doc library/Zend/Loader/*.md
1027%doc library/Zend/Loader/composer.json
1028%{php_data_dir}/Zend/autoload.php
1029%{php_data_dir}/Zend/Loader
1030%exclude %{php_data_dir}/Zend/Loader/*.md
1031%exclude %{php_data_dir}/Zend/Loader/composer.json
1032
1033%files Log
1034%defattr(644,root,root,755)
1035%doc library/Zend/Log/*.md
1036%doc library/Zend/Log/composer.json
1037%{php_data_dir}/Zend/Log
1038%exclude %{php_data_dir}/Zend/Log/*.md
1039%exclude %{php_data_dir}/Zend/Log/composer.json
1040
1041%files Mail
1042%defattr(644,root,root,755)
1043%doc library/Zend/Mail/*.md
1044%doc library/Zend/Mail/composer.json
1045%{php_data_dir}/Zend/Mail
1046%exclude %{php_data_dir}/Zend/Mail/*.md
1047%exclude %{php_data_dir}/Zend/Mail/composer.json
1048
1049%files Math
1050%defattr(644,root,root,755)
1051%doc library/Zend/Math/*.md
1052%doc library/Zend/Math/composer.json
1053%{php_data_dir}/Zend/Math
1054%exclude %{php_data_dir}/Zend/Math/*.md
1055%exclude %{php_data_dir}/Zend/Math/composer.json
1056
1057%files Memory
1058%defattr(644,root,root,755)
1059%doc library/Zend/Memory/*.md
1060%doc library/Zend/Memory/composer.json
1061%{php_data_dir}/Zend/Memory
1062%exclude %{php_data_dir}/Zend/Memory/*.md
1063%exclude %{php_data_dir}/Zend/Memory/composer.json
1064
1065%files Mime
1066%defattr(644,root,root,755)
1067%doc library/Zend/Mime/*.md
1068%doc library/Zend/Mime/composer.json
1069%{php_data_dir}/Zend/Mime
1070%exclude %{php_data_dir}/Zend/Mime/*.md
1071%exclude %{php_data_dir}/Zend/Mime/composer.json
1072
1073%files ModuleManager
1074%defattr(644,root,root,755)
1075%doc library/Zend/ModuleManager/*.md
1076%doc library/Zend/ModuleManager/composer.json
1077%{php_data_dir}/Zend/ModuleManager
1078%exclude %{php_data_dir}/Zend/ModuleManager/*.md
1079%exclude %{php_data_dir}/Zend/ModuleManager/composer.json
1080
1081%files Mvc
1082%defattr(644,root,root,755)
1083%doc library/Zend/Mvc/*.md
1084%doc library/Zend/Mvc/composer.json
1085%{php_data_dir}/Zend/Mvc
1086%exclude %{php_data_dir}/Zend/Mvc/*.md
1087%exclude %{php_data_dir}/Zend/Mvc/composer.json
1088
1089%files Navigation
1090%defattr(644,root,root,755)
1091%doc library/Zend/Navigation/*.md
1092%doc library/Zend/Navigation/composer.json
1093%{php_data_dir}/Zend/Navigation
1094%exclude %{php_data_dir}/Zend/Navigation/*.md
1095%exclude %{php_data_dir}/Zend/Navigation/composer.json
1096
1097%files Paginator
1098%defattr(644,root,root,755)
1099%doc library/Zend/Paginator/*.md
1100%doc library/Zend/Paginator/composer.json
1101%{php_data_dir}/Zend/Paginator
1102%exclude %{php_data_dir}/Zend/Paginator/*.md
1103%exclude %{php_data_dir}/Zend/Paginator/composer.json
1104
1105%files Permissions-Acl
1106%defattr(644,root,root,755)
1107%doc library/Zend/Permissions/Acl/*.md
1108%doc library/Zend/Permissions/Acl/composer.json
1109%dir %{php_data_dir}/Zend/Permissions
1110%{php_data_dir}/Zend/Permissions/Acl
1111%exclude %{php_data_dir}/Zend/Permissions/Acl/*.md
1112%exclude %{php_data_dir}/Zend/Permissions/Acl/composer.json
1113
1114%files Permissions-Rbac
1115%defattr(644,root,root,755)
1116%doc library/Zend/Permissions/Rbac/*.md
1117%doc library/Zend/Permissions/Rbac/composer.json
1118%dir %{php_data_dir}/Zend/Permissions
1119%{php_data_dir}/Zend/Permissions/Rbac
1120%exclude %{php_data_dir}/Zend/Permissions/Rbac/*.md
1121%exclude %{php_data_dir}/Zend/Permissions/Rbac/composer.json
1122
1123%files ProgressBar
1124%defattr(644,root,root,755)
1125%doc library/Zend/ProgressBar/*.md
1126%doc library/Zend/ProgressBar/composer.json
1127%{php_data_dir}/Zend/ProgressBar
1128%exclude %{php_data_dir}/Zend/ProgressBar/*.md
1129%exclude %{php_data_dir}/Zend/ProgressBar/composer.json
1130
1131%files Serializer
1132%defattr(644,root,root,755)
1133%doc library/Zend/Serializer/*.md
1134%doc library/Zend/Serializer/composer.json
1135%{php_data_dir}/Zend/Serializer
1136%exclude %{php_data_dir}/Zend/Serializer/*.md
1137%exclude %{php_data_dir}/Zend/Serializer/composer.json
1138
1139%files Server
1140%defattr(644,root,root,755)
1141%doc library/Zend/Server/*.md
1142%doc library/Zend/Server/composer.json
1143%exclude %{php_data_dir}/Zend/Server/*.md
1144%exclude %{php_data_dir}/Zend/Server/composer.json
1145
1146%files ServiceManager
1147%defattr(644,root,root,755)
1148%doc library/Zend/ServiceManager/*.md
1149%doc library/Zend/ServiceManager/composer.json
1150%{php_data_dir}/Zend/ServiceManager
1151%exclude %{php_data_dir}/Zend/ServiceManager/*.md
1152%exclude %{php_data_dir}/Zend/ServiceManager/composer.json
1153
1154%files Session
1155%defattr(644,root,root,755)
1156%doc library/Zend/Session/*.md
1157%doc library/Zend/Session/composer.json
1158%{php_data_dir}/Zend/Session
1159%exclude %{php_data_dir}/Zend/Session/*.md
1160%exclude %{php_data_dir}/Zend/Session/composer.json
1161
1162%files Soap
1163%defattr(644,root,root,755)
1164%doc library/Zend/Soap/*.md
1165%doc library/Zend/Soap/composer.json
1166%{php_data_dir}/Zend/Soap
1167%exclude %{php_data_dir}/Zend/Soap/*.md
1168%exclude %{php_data_dir}/Zend/Soap/composer.json
1169
1170%files Stdlib
1171%defattr(644,root,root,755)
1172%doc library/Zend/Stdlib/*.md
1173%doc library/Zend/Stdlib/composer.json
1174%{php_data_dir}/Zend/Stdlib
1175%exclude %{php_data_dir}/Zend/Stdlib/*.md
1176%exclude %{php_data_dir}/Zend/Stdlib/composer.json
1177
1178%files Tag
1179%defattr(644,root,root,755)
1180%doc library/Zend/Tag/*.md
1181%doc library/Zend/Tag/composer.json
1182%{php_data_dir}/Zend/Tag
1183%exclude %{php_data_dir}/Zend/Tag/*.md
1184%exclude %{php_data_dir}/Zend/Tag/composer.json
1185
1186%files Test
1187%defattr(644,root,root,755)
1188%doc library/Zend/Test/*.md
1189%doc library/Zend/Test/composer.json
1190%{php_data_dir}/Zend/Test
1191%exclude %{php_data_dir}/Zend/Test/*.md
1192%exclude %{php_data_dir}/Zend/Test/composer.json
1193
1194%files Text
1195%defattr(644,root,root,755)
1196%doc library/Zend/Text/*.md
1197%doc library/Zend/Text/composer.json
1198%{php_data_dir}/Zend/Text
1199%exclude %{php_data_dir}/Zend/Text/*.md
1200%exclude %{php_data_dir}/Zend/Text/composer.json
1201
1202%files Uri
1203%defattr(644,root,root,755)
1204%doc library/Zend/Uri/*.md
1205%doc library/Zend/Uri/composer.json
1206%{php_data_dir}/Zend/Uri
1207%exclude %{php_data_dir}/Zend/Uri/*.md
1208%exclude %{php_data_dir}/Zend/Uri/composer.json
1209
1210%files Validator
1211%defattr(644,root,root,755)
1212%doc library/Zend/Validator/*.md
1213%doc library/Zend/Validator/composer.json
1214%{php_data_dir}/Zend/Validator
1215%exclude %{php_data_dir}/Zend/Validator/*.md
1216%exclude %{php_data_dir}/Zend/Validator/composer.json
1217
1218%files Version
1219%defattr(644,root,root,755)
1220%doc library/Zend/Version/*.md
1221%doc library/Zend/Version/composer.json
1222%{php_data_dir}/Zend/Version
1223%exclude %{php_data_dir}/Zend/Version/*.md
1224%exclude %{php_data_dir}/Zend/Version/composer.json
1225
1226%files View
1227%defattr(644,root,root,755)
1228%doc library/Zend/View/*.md
1229%doc library/Zend/View/composer.json
1230%{php_data_dir}/Zend/View
1231%exclude %{php_data_dir}/Zend/View/*.md
1232%exclude %{php_data_dir}/Zend/View/composer.json
1233
1234%files XmlRpc
1235%defattr(644,root,root,755)
1236%doc library/Zend/XmlRpc/*.md
1237%doc library/Zend/XmlRpc/composer.json
1238%{php_data_dir}/Zend/XmlRpc
1239%exclude %{php_data_dir}/Zend/XmlRpc/*.md
1240%exclude %{php_data_dir}/Zend/XmlRpc/composer.json
1241
1242%files ZendXml
1243%defattr(644,root,root,755)
1244%{php_data_dir}/ZendXml
This page took 0.210785 seconds and 4 git commands to generate.